淺談java淺拷貝與深拷貝

java實現(xiàn)拷貝最直觀的做法用object類中的clone()方法,而想要使用該方法進行對象的克隆只要實現(xiàn)cloneable接口即可;

1.淺拷貝
public class FatherClass implements Cloneable{
    private String name;
    private String age;
    private ChildA childA;
    private ChildB childB;
    //省略getter(),setter()方法
    //重寫clone()方法
    @Override
    protected Object clone() throws CloneNotSupportedException {
        return super.clone();
    }
}
public class ChildA {
    private String name;
    private String age;
}

測試一下克隆方法:

    public static void main(String [] args) throws Exception{
        //設置對象內容
        FatherClass father = new FatherClass();
        father.setAge("18");
        father.setName("wp");
        //設置對其他對象的引用
        ChildA a = new ChildA();
        father.setChildA(a);
        father.getChildA().setName("gzx");
        father.getChildA().setAge("20");
        //拷貝對象
        FatherClass father2 = (FatherClass) father.clone();
        //判斷復制后的對象是否跟原對象相同
        System.out.println("father == father2 :"+(father==father2));
        //比較兩個對象的hashCode
        System.out.println("father hash:"+father.hashCode());
        System.out.println("father2 hash:"+father2.hashCode());
        //比較兩個對象是否引用了同一個對象
        System.out.println("father.childA == father2.childA:"+(father.getChildA()==father2.getChildA()));
        System.out.println("father.childA.hashCode == father2.childA.hashCode:"+(father.getChildA().hashCode()==father2.getChildA().hashCode()));

        //改變原有對象的內容
        father.setName("wp2");
        father.getChildA().setName("lx");

        //查看克隆對象的內容
        //基本類型
        System.out.println("father.name:"+father.getName());
        System.out.println("father2.name:"+father2.getName());
        //引用類型
        System.out.println("father.childA.name:"+father.getChildA().getName());
        System.out.println("father2.childA.name:"+father2.getChildA().getName());
    }

控制臺輸出結果:

father == father2 :false//false表示創(chuàng)建了不同的對象
//兩個對象的hashCode不同
father hash:356573597
father2 hash:1735600054
//clone()之后兩個對象有相同的引用
father.childA == father2.childA:true
father.childA.hashCode == father2.childA.hashCode:true
//改變原對象基本數(shù)據(jù)類型之后,不會影響復制后的對象
//此處說法不嚴謹拍鲤!String是不可變引用,暫且看作基本類型
father.name:wp2
father2.name:wp
//改變原對象引用對象的內容斤富,拷貝后的對象也隨之改變
father.childA.name:lx
father2.childA.name:lx

上例說明熊尉,基本數(shù)據(jù)類型(包括不可變引用String類型)沒有淺拷貝這種說法罐柳,淺拷貝是針對引用類型而言的。

2.1 用clone()方法實現(xiàn)深拷貝

ChildB類也需要實現(xiàn)cloneable接口

public class ChildB implements Cloneable{
    private String name;
    private String age;
    //省略getter(),setter()方法
    @Override
    protected Object clone() throws CloneNotSupportedException {
        return super.clone();
    }
}

FatherClass的clone()方法重寫是重點:

    @Override
    protected Object clone() {
        FatherClass father = null;
        try{
            father =  (FatherClass) super.clone();
            father.childB = (ChildB) this.childB.clone();
        }catch (Exception e){

        }
        return father;
    }

測試一下:

    public static void main(String[]args) throws Exception{
        //設置對象內容
        FatherClass father = new FatherClass();
        father.setAge("18");
        father.setName("wp");
        //設置對其他對象的引用
        ChildB a = new ChildB();
        father.setChildB(a);
        father.getChildB().setName("gzx");
        father.getChildB().setAge("20");
        //拷貝對象
        FatherClass father2 = (FatherClass) father.clone();
        //判斷復制后的對象是否跟原對象相同
        System.out.println("father == father2 :"+(father==father2));
        //比較兩個對象的hashCode
        System.out.println("father hash:"+father.hashCode());
        System.out.println("father2 hash:"+father2.hashCode());
        //比較兩個對象是否引用了同一個對象
        System.out.println("father.childB == father2.childB:"+(father.getChildB()==father2.getChildB()));
        System.out.println("father.childB.hashCode == father2.childB.hashCode:"+(father.getChildB().hashCode()==father2.getChildB().hashCode()));

        //改變原有對象的內容
        father.setName("wp2");
        father.getChildB().setName("lx");

        //查看克隆對象的內容
        //基本類型
        System.out.println("father.name:"+father.getName());
        System.out.println("father2.name:"+father2.getName());
        //引用類型
        System.out.println("father.childB.name:"+father.getChildB().getName());
        System.out.println("father2.childB.name:"+father2.getChildB().getName());
    }

查看控制臺輸出結果:

//復制了一個新的對象
father == father2 :false
father hash:356573597
father2 hash:1735600054
//原對象的ChildB也復制了一個新的
father.childB == father2.childB:false
father.childB.hashCode == father2.childB.hashCode:false
//改變原有對象不影響新的對象內容
father.name:wp2
father2.name:wp
father.childB.name:lx
father2.childB.name:gzx
2.2 利用serializable實現(xiàn)克隆
    public static Object deepCopy(Object originObj) {
        Object obj = null;
        try {
            //把對象寫到流里
            ByteArrayOutputStream bos = new ByteArrayOutputStream();
            ObjectOutputStream oos = new ObjectOutputStream(bos);
            oos.writeObject(originObj);

            //從流里讀取對象
            ByteArrayInputStream bis = new ByteArrayInputStream(bos.toByteArray());
            ObjectInputStream ois = new ObjectInputStream(bis);
            obj = ois.readObject();
        }catch (Exception e){
            //異常處理
            e.printStackTrace();
        }
        return obj;
    }
FatherClass father2 = (FatherClass) deepCopy(father);

注意:FatherClass及其引用的類都必須實現(xiàn)serializable接口狰住,否則無法序列化张吉。

對于兩種深拷貝的選擇:

  • 重寫clone()方法效率高,但是一旦一個對象中存在多個對其他對象的引用催植,或者存在嵌套引用肮蛹,那每層引用都需要重寫clone()方法,代碼復雜度加大创南;
  • 序列化能夠復制整個對象伦忠,包括所有的引用,很方便稿辙,但同對象的效率比clone()方法低太多昆码;

個人建議使用clone()方法來實現(xiàn)深拷貝;當業(yè)務存在多層的引用邓深,那模型的設計就值得商榷了未桥。

?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市芥备,隨后出現(xiàn)的幾起案子冬耿,更是在濱河造成了極大的恐慌,老刑警劉巖萌壳,帶你破解...
    沈念sama閱讀 207,113評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件亦镶,死亡現(xiàn)場離奇詭異,居然都是意外死亡袱瓮,警方通過查閱死者的電腦和手機缤骨,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評論 2 381
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來尺借,“玉大人绊起,你說我怎么就攤上這事×钦叮” “怎么了虱歪?”我有些...
    開封第一講書人閱讀 153,340評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長栅表。 經(jīng)常有香客問我笋鄙,道長,這世上最難降的妖魔是什么怪瓶? 我笑而不...
    開封第一講書人閱讀 55,449評論 1 279
  • 正文 為了忘掉前任萧落,我火速辦了婚禮,結果婚禮上,老公的妹妹穿的比我還像新娘找岖。我一直安慰自己陨倡,他們只是感情好,可當我...
    茶點故事閱讀 64,445評論 5 374
  • 文/花漫 我一把揭開白布宣增。 她就那樣靜靜地躺著玫膀,像睡著了一般。 火紅的嫁衣襯著肌膚如雪爹脾。 梳的紋絲不亂的頭發(fā)上帖旨,一...
    開封第一講書人閱讀 49,166評論 1 284
  • 那天,我揣著相機與錄音灵妨,去河邊找鬼解阅。 笑死,一個胖子當著我的面吹牛泌霍,可吹牛的內容都是我干的货抄。 我是一名探鬼主播,決...
    沈念sama閱讀 38,442評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼朱转,長吁一口氣:“原來是場噩夢啊……” “哼蟹地!你這毒婦竟也來了?” 一聲冷哼從身側響起藤为,我...
    開封第一講書人閱讀 37,105評論 0 261
  • 序言:老撾萬榮一對情侶失蹤怪与,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后缅疟,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體分别,經(jīng)...
    沈念sama閱讀 43,601評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,066評論 2 325
  • 正文 我和宋清朗相戀三年存淫,在試婚紗的時候發(fā)現(xiàn)自己被綠了耘斩。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,161評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡桅咆,死狀恐怖括授,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情岩饼,我是刑警寧澤刽脖,帶...
    沈念sama閱讀 33,792評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站忌愚,受9級特大地震影響,放射性物質發(fā)生泄漏却邓。R本人自食惡果不足惜硕糊,卻給世界環(huán)境...
    茶點故事閱讀 39,351評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧简十,春花似錦檬某、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至胰默,卻和暖如春场斑,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背牵署。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評論 1 261
  • 我被黑心中介騙來泰國打工漏隐, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人奴迅。 一個月前我還...
    沈念sama閱讀 45,618評論 2 355
  • 正文 我出身青樓青责,卻偏偏與公主長得像,于是被迫代替她去往敵國和親取具。 傳聞我的和親對象是個殘疾皇子脖隶,可洞房花燭夜當晚...
    茶點故事閱讀 42,916評論 2 344

推薦閱讀更多精彩內容