原型模式的深克隆和浅克隆
Posted jyfby
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了原型模式的深克隆和浅克隆相关的知识,希望对你有一定的参考价值。
深克隆核心代码:
public Object deepclone () throws IOException, ClassNotFoundException{
//将对象写入流中
ByteArrayOutputStream bao=new ByteArrayOutputStream();
ObjectOutputStream oos=new ObjectOutputStream(bao);
oos.writeObject(this);
//将对象从流中取出
ByteArrayInputStream bis=new ByteArrayInputStream(bao.toByteArray());
ObjectInputStream ois=new ObjectInputStream(bis);
return(ois.readObject());
}
浅克隆核心代码:
ublic Object clone(){
Email clone=null;
try {
clone=(Email)super.clone();
} catch (CloneNotSupportedException e) {
// TODO Auto-generated catch block
System.out.println("Clone failure");
}
return clone;
}
以上是关于原型模式的深克隆和浅克隆的主要内容,如果未能解决你的问题,请参考以下文章