20.代碼如下:
Import java.io.*;
Public class SerialCloneTest1
{
Public static void main(String args[])
{
Student harry=new Student (“Harry Hacker”,”Computer”);
Student harry2=(Student)harry.clone();
System.out.println(harry);
System.out.println(harry2);
}
}
Class SerialCloneable implements Cloneable,Serializable
{
Public Object clone()
{
Try
{
ByteArrayOutputStream bout = new ByteArrayOutStream();
ObjectOutputStream out=new ObjectOutputStream(bout);
Out.writeObject(this);
Out.close();
ByteArrayInputStream bin=new ByteArrayInputStream(bout.toByteArray());
ObjectInputStream in = new ObjectInputStream(bin);
Object ret=in.readObject();
In.close();
Return ret;
}
Catch(Exception e)
{
Return null;
}
}
}
Class Student extent SerialCloneable
{
Public Student(String n,String m)
{
Name=n;
Major=m;
}
Public String toString()
{
Return getclass().getName()+”[name=”+major+”]”
}
Private String name;
Private String major;
}
相關(guān)推薦:北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |