资源简介
代码片段和文件信息
/*
* Copyright (c) 1995 2004 Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package java.lang;
/**
* A class implements the Cloneable
interface to
* indicate to the {@link java.lang.object#clone()} method that it
* is legal for that method to make a
* field-for-field copy of instances of that class.
*
* Invoking object‘s clone method on an instance that does not implement the
* Cloneable
interface results in the exception
* CloneNotSupportedException
being thrown.
*
* By convention classes that implement this interface should override
* object.clone (which is protected) with a public method.
* See {@link java.lang.object#clone()} for details on overriding this
* method.
*
* Note that this interface does not contain the clone method.
* Therefore it is not possible to clone an object merely by virtue of the
* fact that it implements this interface. Even if the clone method is invoked
* reflectively there is no guarantee that it will succeed.
*
* @author unascribed
* @see java.lang.CloneNotSupportedException
* @see java.lang.object#clone()
* @since JDK1.0
*/
public interface Cloneable {
}
- 上一篇:基于Android手机的室内定位技术研究与实现.pdf
- 下一篇:jsp酒店管理
相关资源
- 微博系统(Java源码,servlet+jsp),适
- java串口通信全套完整代码-导入eclip
- jsonarray所必需的6个jar包.rar
- 三角网构TIN生成算法,Java语言实现
- java代码编写将excel数据导入到mysql数据
- Java写的cmm词法分析器源代码及javacc学
- JAVA JSP公司财务管理系统 源代码 论文
- JSP+MYSQL旅行社管理信息系统
- 推荐算法的JAVA实现
- 基于Java的酒店管理系统源码(毕业设
- java-图片识别 图片比较
- android毕业设计
- java23种设计模式+23个实例demo
- java Socket发送/接受报文
- JAVA828436
- java界面美化 提供多套皮肤直接使用
- 在线聊天系统(java代码)
- 基于Java的图书管理系统807185
- java中实现将页面数据导入Excel中
- java 企业销售管理系统
- java做的聊天系统(包括正规课程设计
- Java编写的qq聊天室
- 商店商品管理系统 JAVA写的 有界面
- JAVA开发聊天室程序
- 在linux系统下用java执行系统命令实例
- java期末考试试题两套(答案) 选择(
- JAVA3D编程示例(建模、交互)
- Java 文件加密传输
- java做的房产管理系统
- 基于jsp的bbs论坛 非常详细
评论
共有 条评论