Java通过序列化克隆对象
// class类需要先实现 implements Serializable 接口;
//类当中的其他复杂类属性也需要 实现 此接口 implements Serializable
//后定义下列方法
public ListClassRoomUsed clone(){
ListClassRoomUsed copy = null;
try {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(baos);
oos.writeObject(this);
ByteArrayInputStream bais=new ByteAr
Java通过序列化克隆对象最先出现在Python成神之路。
共有 0 条评论