美文网首页
Cloneable源码

Cloneable源码

作者: one_mighty | 来源:发表于2018-01-12 17:28 被阅读0次

    1、简介

    1.1、英文注释

    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.

    1.2、中国话

    实现Cloneable 接口的类是一个方法签名,它表明了该类可以使用所有累的父类的clone方法来进行对一个类成员到类成员的拷贝。

    2、代码

    2.1、所属包及类名

    package java.lang;
    public interface Cloneable {
    }
    

    2.2、类成员

    2.3、类方法

    另:使用详见原型设计模式

    相关文章

      网友评论

          本文标题:Cloneable源码

          本文链接:https://www.haomeiwen.com/subject/juwfoxtx.html