java clone方法怎样深拷贝对象

avatar
作者
筋斗云
阅读量:0

在Java中,要实现对象的深拷贝,可以使用以下方法之一:

  1. 实现Cloneable接口并重写clone()方法:

首先,让你的类实现Cloneable接口。然后,在你的类中重写clone()方法,并在其中创建一个新的对象实例,同时复制原始对象的所有属性。对于引用类型的属性,需要递归地进行深拷贝。

public class MyClass implements Cloneable {     private int value;     private MyClass reference;      @Override     public MyClass clone() {         try {             MyClass cloned = (MyClass) super.clone();             cloned.reference = this.reference == null ? null : this.reference.clone();             return cloned;         } catch (CloneNotSupportedException e) {             throw new AssertionError(); // Can't happen         }     } } 
  1. 使用序列化和反序列化实现深拷贝:

这种方法涉及到将对象序列化为字节流,然后再将字节流反序列化为一个新的对象实例。这种方法会自动处理对象图中的引用类型属性,实现深拷贝。

import java.io.*;  public class MyClass implements Serializable {     private int value;     private MyClass reference;      public MyClass deepCopy() {         try (ByteArrayOutputStream bos = new ByteArrayOutputStream();              ObjectOutputStream oos = new ObjectOutputStream(bos);              ByteArrayInputStream bis = new ByteArrayInputStream(bos.toByteArray());              ObjectInputStream ois = new ObjectInputStream(bis)) {             return (MyClass) ois.readObject();         } catch (IOException | ClassNotFoundException e) {             throw new AssertionError(); // Can't happen         }     } } 

请注意,如果你的类中有特殊的类加载器或者包含非可序列化的属性,这种方法可能不适用。在这种情况下,实现Cloneable接口并重写clone()方法可能是更好的选择。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!