原型模式Prototype
程序员文章站
2022-03-04 13:26:09
...
完整设计模式目录见:https://blog.csdn.net/u013523089/article/details/82852049
原型模式:深度克隆,深度复制一个对象(以当前对象为原型,复制一个新的对象)
实现:1. 序列化 2.自己通过赋值的方式手动处理
实现Cloneable接口(浅复制),使用以下方法重写clone方法
private Object deepClone() {
//使用序列化深度克隆;或新建对象进行成员赋值也属于原型模式
try {
ByteArrayOutputStream bos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(bos);
oos.writeObject(this);
ByteArrayInputStream bio = new ByteArrayInputStream(bos.toByteArray());
ObjectInputStream bis = new ObjectInputStream(bio);
return bis.readObject();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}