List的深度克隆

在完成ArrayList的复制的时候,发现通过list.addAll()方法复制的List中的对象,和原来List 中的对象是同一个地址,这意味着你修改复制的list中的一个对象,那么原来list 中的对象也会跟着变化!这称为浅克隆,在很多地方浅克隆,不能实现我们需求。深度克隆,是指在复制list的时候,list 中的对象,也都是新的对象(和原list中的对象地址不同)

1.深度复制的代码(据说源自某个国外大神)

public static  List deepCopy(List src) throws IOException, ClassNotFoundException {  
    ByteArrayOutputStream byteOut = new ByteArrayOutputStream();  
    ObjectOutputStream out = new ObjectOutputStream(byteOut);  
    out.writeObject(src);  
  
    ByteArrayInputStream byteIn = new ByteArrayInputStream(byteOut.toByteArray());  
    ObjectInputStream in = new ObjectInputStream(byteIn);  
    @SuppressWarnings("unchecked")  
    List dest = (List) in.readObject();  
    return dest;  
}  
希望能遇到此问题的朋友,能跟我分享其他靠谱的深度克隆的方法^-^

你可能感兴趣的:(List的深度克隆)