首页 > 新闻中心 > 技术百科

java怎么实现对象克隆 返回列表

网络2023-08-28 00:00:00编辑发布,已经有个小可爱看过这篇文章啦

在Java中,可以通过两种方式来实现对象克隆:浅拷贝和深拷贝。
1. 浅拷贝:使用Object类的clone()方法进行对象的浅拷贝。浅拷贝会创建一个新的对象,将原始对象的非静态字段的值复制到新对象中,对于引用类型的字段,复制的是引用而不是对象本身。如果原始对象中的字段是可变的,修改新对象中的字段会影响原始对象,反之亦然。
例如:
```java
public class MyClass implements Cloneable {
private int intValue;
private String stringValue;
public MyClass(int intValue, String stringValue) {
this.intValue = intValue;
this.stringValue = stringValue;
}
@Override
public Object clone() throws CloneNotSupportedException {
return super.clone();
}
public static void main(String[] args) {
MyClass obj1 = new MyClass(10, "Hello");
try {
MyClass obj2 = (MyClass) obj1.clone();
System.out.println(obj1 == obj2); // false
System.out.println(obj1.intValue == obj2.intValue); // true
System.out.println(obj1.stringValue == obj2.stringValue); // true
} catch (CloneNotSupportedException e) {
e.printStackTrace();
}
}
}
```
2. 深拷贝:通过实现Serializable接口以及使用序列化和反序列化的方式实现对象的深拷贝。深拷贝会创建一个新的对象,将原始对象及其引用的对象都复制到新对象中,新对象与原始对象是完全独立的。
例如:
```java
import java.io.*;
public class MyClass implements Serializable {
private int intValue;
private String stringValue;
public MyClass(int intValue, String stringValue) {
this.intValue = intValue;
this.stringValue = stringValue;
}
public MyClass deepClone() throws IOException, ClassNotFoundException {
ByteArrayOutputStream bos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(bos);
oos.writeObject(this);
ByteArrayInputStream bis = new ByteArrayInputStream(bos.toByteArray());
ObjectInputStream ois = new ObjectInputStream(bis);
return (MyClass) ois.readObject();
}
public static void main(String[] args) {
MyClass obj1 = new MyClass(10, "Hello");
try {
MyClass obj2 = obj1.deepClone();
System.out.println(obj1 == obj2); // false
System.out.println(obj1.intValue == obj2.intValue); // true
System.out.println(obj1.stringValue == obj2.stringValue); // false
} catch (IOException | ClassNotFoundException e) {
e.printStackTrace();
}
}
}
```
需要注意的是,要实现深拷贝,对象及其引用的对象都需要实现Serializable接口。

  • 的是
  • 接口
  • 两种
  • 而不是
  • 可以通过
  • 象中
  • 创建一个
  • 到新
  • 需要注意
  • 序列化

热门新闻

来电咨询