JDK源码阅读笔记-Cloneable接口

JDK 版本:1.8
代码地址

1.前言

clone方法能方便的获得一个对象的拷贝,但其中也有些细节需要注意。

2.实现注意事项

2.1 要调用 clone 方法必须实现 Cloneable 接口

如果类没有实现 Cloneable 接口,类的实例却调用了 clone 方法,则会抛出CloneNotSupportedException异常。
用反射机制去调用 Objec 类的 clone 方法,可以观察到这个现象:

Object object = new Object();
Method method = object.getClass().getDeclaredMethod("clone");
method.setAccessible(true);
method.invoke(object);

运行结果:

Caused by: java.lang.CloneNotSupportedException: java.lang.Object
    at java.lang.Object.clone(Native Method)
2.2 clone 方法的默认实现是浅拷贝

clone 方法的默认实现是拷贝,即对于类中可变对象没有进行真正的拷贝,只是将该可变对象赋值给了克隆对象对应的字段。修改当前对象中可变对象也会影响到克隆对象中相应的字段。
举个例子来说明下:

private static void shallowCopyTest() {
    Person ming = new Person("ming", new String[]{"mingMing", "daMing"});
    compareCloneObject(ming);
}

private static void compareCloneObject(Person person) {
    try {
        Person fakePerson = (Person) person.clone();
        System.out.println("person.getNickName() == fakePerson.getNickName() : "
                + (person.getNickName() == fakePerson.getNickName()));
        fakePerson.setNickName(0, "compare");
        System.out.println(person);
        System.out.println(fakePerson);
    } catch (CloneNotSupportedException e) {
        e.printStackTrace();
    }
}

private static class Person implements Cloneable {
    private String name;
    private String[] nickName;

    public Person(String name, String[] nickName) {
        this.name = name;
        this.nickName = nickName;
    }

    public void setNickName(int index, String nickName) {
        this.nickName[index] = nickName;
    }

    public void setNickName(String[] nickName) {
        this.nickName = nickName;
    }

    public String[] getNickName() {
        return nickName;
    }

    @Override
    public Object clone() throws CloneNotSupportedException {
        return super.clone();
    }

    @Override
    public String toString() {
        return "Person{" +
                "name='" + name + '\'' +
                ", nickName=" + Arrays.toString(nickName) +
                '}';
    }
}

调用shallowCopyTest方法,输出结果为:

person.getNickName() == fakePerson.getNickName() : true
Person{name='ming', nickName=[compare, daMing]}
Person{name='ming', nickName=[compare, daMing]}

可以看到原对象与克隆对象的 nickName 是同一个数组,更改一个以后另一个的值也发送相应变化。

2.3 深拷贝的实现

实现深拷贝要将对象类的所有可变对象都拷贝一遍,然后用拷贝的引用去替换掉原有的引用。
实现例子如下:

private static void deepCopyTest() {
    Student ming = new Student("ming", new String[]{"mingMing", "daMing"}, "jiangNan");
    compareCloneObject(ming);
}

public static class Student extends Person {
        private String school;

        public Student(String name, String[] nickName, String school) {
            super(name, nickName);
            this.school = school;
        }

        @Override
        public Object clone() throws CloneNotSupportedException {
            Student student = (Student) super.clone();
            student.setNickName(this.getNickName().clone());
            return student;
        }

        @Override
        public String toString() {
            return "Student{" +
                    "name='" + super.name + '\'' +
                    ", nickName=" + Arrays.toString(super.nickName) +
                    ", school='" + school + '\'' +
                    '}';
        }
    }

调用deepCopyTest方法,输出结果为:

person.getNickName() == fakePerson.getNickName() : false
Student{name='ming', nickName=[mingMing, daMing], school='jiangNan'}
Student{name='ming', nickName=[compare, daMing], school='jiangNan'}

可以看到两个对象 nickName 已经不是同一个对象了,改变之后也不会相互影响了。这是因为在覆写的 clone 方法中对 nickName 数组也进行了克隆,并赋值给克隆对象。

3.注释文档及个人翻译

/**
 * A class implements the <code>Cloneable</code> 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.
 * <p>
 * 一个类实现了 Cloneable 接口表示该类使用clone()方法来实现实例的逐字段的复制是合法的。
 * 
 * Invoking Object's clone method on an instance that does not implement the
 * <code>Cloneable</code> interface results in the exception
 * <code>CloneNotSupportedException</code> being thrown.
 * <p>
 * 在一个没有实现 Cloneable 接口的实例上调用 clone 方法将会抛出CloneNotSupportedException。
 * 
 * By convention, classes that implement this interface should override
 * <tt>Object.clone</tt> (which is protected) with a public method.
 * See {@link java.lang.Object#clone()} for details on overriding this
 * method.
 * 按照惯例,实现该接口的类应该覆写Object.clone为一个公共方法。查看java.lang.Object#clone()
 * 来获取更多细节。
 * 
 * <p>
 * Note that this interface does <i>not</i> contain the <tt>clone</tt> 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.
 * 注意:本接口不包含 clone 方法。因此,不能仅凭仅仅实现了本接口来克隆对象,即使是反射式调用,
 * 也不能保证成功。
 * @author  unascribed
 * @see     java.lang.CloneNotSupportedException
 * @see     java.lang.Object#clone()
 * @since   JDK1.0
 */
/**
 * Creates and returns a copy of this object.  The precise meaning
 * of "copy" may depend on the class of the object. The general
 * intent is that, for any object {@code x}, the expression:
 * <blockquote>
 * <pre>
 * x.clone() != x</pre></blockquote>
 * will be true, and that the expression:
 * <blockquote>
 * <pre>
 * x.clone().getClass() == x.getClass()</pre></blockquote>
 * will be {@code true}, but these are not absolute requirements.
 * While it is typically the case that:
 * <blockquote>
 * <pre>
 * x.clone().equals(x)</pre></blockquote>
 * will be {@code true}, this is not an absolute requirement.
 * <p>
 * 创建并返回一个对象的拷贝。拷贝的准确定义取决于对象的类定义。普遍的来说,对任意对象 x,
 * 表达式:x.clone() ! = x 的值是 true,并且表达式:x.clone().getClass() == x.getClass() 
 * 的值是
 * true,但这些要求并不是绝对的。并且通常表达式:x.clone().equals(x)的值也是 true,
 * 这也不是绝对必要的条件。
 * 
 * By convention, the returned object should be obtained by calling
 * {@code super.clone}.  If a class and all of its superclasses (except
 * {@code Object}) obey this convention, it will be the case that
 * {@code x.clone().getClass() == x.getClass()}.
 * <p>
 * 按照惯例,应该通过调用 super.clone 来获取返回的对象。如果一个类及其所有超类(Object 除外)
 * 都遵循此约定,则 x.clone().getClass() == x.getClass() 成立。
 * 
 * By convention, the object returned by this method should be independent
 * of this object (which is being cloned).  To achieve this independence,
 * it may be necessary to modify one or more fields of the object returned
 * by {@code super.clone} before returning it.  Typically, this means
 * copying any mutable objects that comprise the internal "deep structure"
 * of the object being cloned and replacing the references to these
 * objects with references to the copies.  If a class contains only
 * primitive fields or references to immutable objects, then it is usually
 * the case that no fields in the object returned by {@code super.clone}
 * need to be modified.
 * <p>
 * 按照惯例,被本方法返回的对象应该与被克隆的原本对象无关。为了实现这种独立,可能需要在
 * 克隆方法返回前修改被返回对象的字段。通常,这意味着拷贝构成被克隆对象的内部“深度结构”
 * 的任何可变对象,并用拷贝的引用替换掉原本对象的引用。如果一个类仅仅包含原始字段或不可
 * 变对象的引用,那么通常super.clone返回对象中没有字段需要被修改。
 * 
 * The method {@code clone} for class {@code Object} performs a
 * specific cloning operation. First, if the class of this object does
 * not implement the interface {@code Cloneable}, then a
 * {@code CloneNotSupportedException} is thrown. Note that all arrays
 * are considered to implement the interface {@code Cloneable} and that
 * the return type of the {@code clone} method of an array type {@code T[]}
 * is {@code T[]} where T is any reference or primitive type.
 * Otherwise, this method creates a new instance of the class of this
 * object and initializes all its fields with exactly the contents of
 * the corresponding fields of this object, as if by assignment; the
 * contents of the fields are not themselves cloned. Thus, this method
 * performs a "shallow copy" of this object, not a "deep copy" operation.
 * <p>
 * Object 类的 clone 方法执行特定的克隆操作。首先,如果对象的类没有实现 Cloneable 
 * 接口,那么会抛出 CloneNotSupportedException 异常。请注意,所有的数组都被视为实
 * 现了 Cloneable 接口,并且 T[] 类型数组 clone 接口的返回类型是 T[],此处 T 可以
 * 是任意引用类型或原始类型。除此之外,此方法创建一个对象的类的新实例,然后用原本对象对
 * 应字段内容来初始化新实例所有字段,就像赋值;字段的内容不会被克隆。因此,此方法对对象
 * 执行了“浅拷贝”而不是一个“深拷贝”。
 * 
 * The class {@code Object} does not itself implement the interface
 * {@code Cloneable}, so calling the {@code clone} method on an object
 * whose class is {@code Object} will result in throwing an
 * exception at run time.
 * Object 类自身没有实现 Cloneable 接口,所以当对一个 Object 类的实例调用 clone 
 * 方法时将会在运行时抛出异常。
 * @return     a clone of this instance.
 * @throws  CloneNotSupportedException  if the object's class does not
 *               support the {@code Cloneable} interface. Subclasses
 *               that override the {@code clone} method can also
 *               throw this exception to indicate that an instance cannot
 *               be cloned.
 * @see java.lang.Cloneable
 */
protected native Object clone() throws CloneNotSupportedException;
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,924评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,781评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,813评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,264评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,273评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,383评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,800评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,482评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,673评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,497评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,545评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,240评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,802评论 3 304
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,866评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,101评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,673评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,245评论 2 341

推荐阅读更多精彩内容