资源简介
代码片段和文件信息
/*
* 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酒店管理
相关资源
- 云笔记项目---Myeclipse完整版
- JAVA swing三层架构的超市收银系统
- 自考java 04747《Java语言程序设计一》
- Java实现远程桌面连接
- java程序设计第十版梁勇著 机械工业
- Java聊天室程序源码(毕业设计) Bu
- 可视化java神经网络开发代码
- javaweb图书馆管理系统源码
- 魔乐科技:从入门到精通Java全部源码
- Java的mysql数据库驱动包mysql-connector-
- java版房产中介管理系统
- JAVA对话框实现设备管理系统
- 30个优秀简历分享
- java cs架构swing框架
- 考试管理系统 java
- java多线程+Socket+Swing局域网聊天软件客
- java web通讯录管理系统
- 基于JMS的WEB邮件客端系统(JAVAMAIL版)
- v512_张利国_JavaSE项目_源代码
- 建筑管理信息系统java+mysql毕业设计
- OAuth Server和OAuth Client(JAVA实现,ecl
- WebtestRecorder插件---Selenium Webdriver脚本
- jackson-core-2.2.1.jar
- 健身房管理系统论文 JAVA语言的
- JAVA聊天系统 功能强大可私聊、监控、
- JAVA 面试 1000题内容全覆盖2017年新版
- opencv_java.so+opencv.jar
- cmpp2 java实现及网关模拟器
- Java 游戏项目完整源码共四个项目,适
- 非常实用的 java web (servlet jsp) 非常
评论
共有 条评论