在Java中,有以下幾種方法可以實(shí)現(xiàn)對象的克?。?/p>
public class MyClass implements Cloneable {
private int value;
// 構(gòu)造函數(shù)、getter和setter方法等
@Override
public Object clone() throws CloneNotSupportedException {
return super.clone();
}
}
public class MyClass {
private int value;
// 構(gòu)造函數(shù)、getter和setter方法等
public MyClass(MyClass other) {
this.value = other.getValue();
}
}
import java.io.*;
public class MyClass implements Serializable {
private int value;
// 構(gòu)造函數(shù)、getter和setter方法等
public MyClass clone() {
try {
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();
} catch (IOException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
return null;
}
}
需要注意的是,使用第三種方法時,被克隆的類必須實(shí)現(xiàn)Serializable接口。