JAVA對象克隆

 

 1> 爲了獲取對象的一份拷貝,咱們能夠利用Object類的clone()方法。this

2> 在派生類中覆蓋基類的clone(),並聲明爲public。
3> 在派生類的clone()方法中,調用super.clone()。
4> 在派生類中實現Cloneable接口。
4> 沒有抽象方法的接口叫標識接口。
5> 爲何咱們在派生類中覆蓋Object的clone()方法時,必定要調用super.clone()呢?在運行時刻,Object 的clone()方法能識別出你要複製的是哪個對象,而後爲此對象分配空間,並進行對象的複製,將原 始對象的內容一一複製到新的對象空間去。

* 淺克隆是針對沒有引用類型的變量來克隆。針對引用類型的克隆應該用Deeply Clone。
淺克隆:
Code:
class FleetClone
{
public static void main(String[] args)
{
   Professor p=new Professor("feiyang",23);
   Student s1=new Student("zhangshan",18,p);
   Student s2=(Student)s1.clone();
   s2.p.name="feifei";
   s2.p.age=30;
   System.out.println("name="+s1.p.name+","+"age="+s1.p.age);
}
}
class Professor
{
String name;
int age;
Professor(String name,int age)
{
this.name=name;
this.age=age;
}
}code

class Student implements Cloneable
{
Professor p;
String name;
int age;
Student(String name, int age,Professor p)
{
this.name=name;
this.age=age;
this.p=p;
}
public Object clone()
{
Object o=null;
try
{
   o=super.clone();
}
catch(CloneNotSupportedException e)
{
   e.printStackTrace();
}
return o;
}
}
改變學生s2的教授信息,打印s1教授信息,結果爲:name=feifei,age=30.產生這個結果是由於String是一個常量類型.

深克隆
code:
class DeeplyClone
{
public static void main(String[] args)
{
   Professor p=new Professor("feiyang",23);
   Student s1=new Student("zhangshan",18,p);
   Student s2=(Student)s1.clone();
   s2.p.name="Bill.Gates";
   s2.p.age=30;
   System.out.println("name="+s1.p.name+","+"age="+s1.p.age);
}
}
class Professor implements Cloneable
{
String name;
int age;
Professor(String name,int age)
{
this.name=name;
this.age=age;
}
public Object clone()
{
Object o=null;
try
{
   o=super.clone();
}
catch(CloneNotSupportedException e)
{
   e.printStackTrace();
}
return o;
}
}對象

class Student implements Cloneable
{
Professor p;
String name;
int age;
Student(String name, int age,Professor p)
{
this.name=name;
this.age=age;
this.p=p;
}
public Object clone()
{
//Object o=null;
Student o=null;
try
{
   o=(Student)super.clone();
}
catch(CloneNotSupportedException e)
{
   e.printStackTrace();
}
o.p=(Professor)p.clone();
return o;
}
}
打印結果爲:name=Bill.Gates,age=30,這就是深克隆.接口

相關文章
相關標籤/搜索