您好,登錄后才能下訂單哦!
本篇內容主要講解“java中的原始模型模式是什么”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“java中的原始模型模式是什么”吧!
什么是原始模型模式
原始模型模式中的角色
抽象原型角色(Prototype)
具體原型角色(ConcretePrototype)?????
客戶端角色(Client)
使用Java內置機制實現原始模型模式
淺拷貝和深拷貝
怎么實現深拷貝
通過給出一個原型對象指明所要創建的對象的類型,然后通過復制這個原型對象來獲取的更多的同類型的對象。
這讓我不由自主的想起克隆技術,還記得克隆羊嗎?我們接下來講的內容和克隆羊不能說關系密切,只能說毫無關系。
設計模式和編程語言無關,但是二當家的依然用Java語言去實戰舉例。而且Java有標準的實現原始模型模式的方法。
Prototype:抽象類或者一個接口,給出具體模型需要的接口。ConcretePrototype:繼承抽象原型模型角色,被復制的對象。Client:提出復制請求。
我們用家庭作業為抽象原型角色(Prototype)。我們這里的作業是可以抄的。大家不要學哈。
package com.secondgod.prototype; /** * 作業 * * @author 二當家的白帽子 https://le-yi.blog.csdn.net/ */ public interface IHomework { /** * 抄一份 * @return */ IHomework copy(); /** * 修改所有者 * @param owner */ void setOwner(String owner); }
我們用語文作業作為具體原型角色(ConcretePrototype)。
package com.secondgod.prototype; import java.text.MessageFormat; /** * 語文作業 * * @author 二當家的白帽子 https://le-yi.blog.csdn.net/ */ public class ChineseHomework implements IHomework { /** * 作業的所有者 */ private String owner; /** * 作業標題/作業要求 */ private String title; /** * 作業內容 */ private String content; public ChineseHomework(String owner, String title, String content) { this.owner = owner; this.title = title; this.content = content; } public String getOwner() { return owner; } public void setOwner(String owner) { this.owner = owner; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String toString() { return MessageFormat.format("owner:{0},title:{1},content:{2}", owner, title, content); } @Override public IHomework copy() { ChineseHomework homework = new ChineseHomework(this.getOwner(), this.getTitle(), this.getContent()); return homework; } }
我們測試一下。
package com.secondgod.prototype; /** * 測試原始模型 * * @author 二當家的白帽子 https://le-yi.blog.csdn.net/ */ public class Test { public static void main(String[] args) { // 老師讓寫作業,大當家按時完成 IHomework homework = new ChineseHomework("大當家的", "作文-最崇拜的人", "不瞞你們說,我最崇拜的是二當家的"); // 二當家的沒按時完成,決定去抄大當家的作業~ IHomework newHomework = homework.copy(); newHomework.setOwner("二當家的"); System.out.println(homework); System.out.println(newHomework); } }
和我們的預期一致
在Object類中有這樣一個方法,Java中所有的類都繼承自Object類,也就是說所有的類內部都可以復制自己。但是卻不能直接調用別的類的克隆方法。也就是說有統一的方式,但是默認不可用。
我們改一下語文作業類,使用clone方法去嘗試,克隆自己。
package com.secondgod.prototype; import java.text.MessageFormat; /** * 語文作業 * * @author 二當家的白帽子 https://le-yi.blog.csdn.net/ */ public class ChineseHomework implements IHomework { /** * 作業的所有者 */ private String owner; /** * 作業標題/作業要求 */ private String title; /** * 作業內容 */ private String content; public ChineseHomework(String owner, String title, String content) { this.owner = owner; this.title = title; this.content = content; } public String getOwner() { return owner; } public void setOwner(String owner) { this.owner = owner; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String toString() { return MessageFormat.format("owner:{0},title:{1},content:{2}", owner, title, content); } @Override public IHomework copy() { try { return (ChineseHomework) super.clone(); } catch (CloneNotSupportedException e) { throw new RuntimeException(e); } } }
這時候會報錯,因為我們還少做一件事。我們需要把語文作業類實現Cloneable接口,然而這個接口里沒有任何抽象方法,僅僅是一個標記接口。這就像注解一樣,就是為了明確聲明可以克隆。
實現接口后,則可以正確運行。
package com.secondgod.prototype; import java.text.MessageFormat; /** * 語文作業 * * @author 二當家的白帽子 https://le-yi.blog.csdn.net/ */ public class ChineseHomework implements IHomework, Cloneable { /** * 作業的所有者 */ private String owner; /** * 作業標題/作業要求 */ private String title; /** * 作業內容 */ private String content; public ChineseHomework(String owner, String title, String content) { this.owner = owner; this.title = title; this.content = content; } public String getOwner() { return owner; } public void setOwner(String owner) { this.owner = owner; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String toString() { return MessageFormat.format("owner:{0},title:{1},content:{2}", owner, title, content); } @Override public IHomework copy() { try { return (ChineseHomework) super.clone(); } catch (CloneNotSupportedException e) { throw new RuntimeException(e); } } }
和我們自己實現copy效果一樣。clone是一個native方法,是交給本地實現的,通常是直接內存拷貝。
淺拷貝:創建一個新對象,然后將當前對象的非靜態字段復制到該新對象,如果字段是值類型的,那么對該字段執行復制;如果該字段是引用類型的話,則復制引用但不復制引用的對象。因此,原始對象及其副本引用同一個對象。
深拷貝:創建一個新對象,然后將當前對象的非靜態字段復制到該新對象,無論該字段是值類型的還是引用類型,都復制獨立的一份。當你修改其中一個對象的任何內容時,都不會影響另一個對象的內容。
二當家的理解方式是,淺拷貝就是僅拷貝當前對象的內容,深拷貝就是遞歸拷貝當前對象和當前對象的引用類型屬性的內容,直到全部都是基本數據類型的屬性為止。另外,僅僅使用clone方法是淺拷貝。
package com.secondgod.prototype;/** * 測試原始模型 * * @author 二當家的白帽子 https://le-yi.blog.csdn.net/ */public class Test implements Cloneable { private Field field; public Field getField() { return field; } public void setField(Field field) { this.field = field; } public Test clone() throws CloneNotSupportedException { return (Test) super.clone(); } public static void main(String[] args) throws CloneNotSupportedException { Test t = new Test(); t.setField(new Field()); Test cloneT = t.clone(); System.out.println(t == cloneT); System.out.println(t.getField() == cloneT.getField()); }}class Field {}
源對象和克隆出的新對象field屬性值是同一個對象。所以是淺拷貝。
讓每個引用類型屬性內部都重寫clone() 方法,然后需要對所有引用類型屬性都調用clone方法。
package com.secondgod.prototype; /** * 測試原始模型 * * @author 二當家的白帽子 https://le-yi.blog.csdn.net/ */ public class Test implements Cloneable { private Field field; public Field getField() { return field; } public void setField(Field field) { this.field = field; } public Test clone() throws CloneNotSupportedException { return (Test) super.clone(); } public static void main(String[] args) throws CloneNotSupportedException { Test t = new Test(); t.setField(new Field()); Test cloneT = t.clone(); System.out.println(t == cloneT); System.out.println(t.getField() == cloneT.getField()); } } class Field { }
這種方式需要遞歸每個引用類型的屬性,要把他們的類都實現深拷貝,只到僅有基本數據類型為止。
利用序列化,這是個偷懶的辦法。但是二當家的覺得更安全,如果你確定是要深拷貝,使用該方式可以防止某處漏實現clone方法,而變成不完全的深拷貝。
package com.secondgod.prototype; /** * 測試原始模型 * * @author 二當家的白帽子 https://le-yi.blog.csdn.net/ */ public class Test implements Cloneable { private Field field; public Field getField() { return field; } public void setField(Field field) { this.field = field; } public Test clone() throws CloneNotSupportedException { return (Test) super.clone(); } public Test deepClone() throws CloneNotSupportedException { Test t = new Test(); t.setField(this.getField().deepClone()); return t; } public static void main(String[] args) throws CloneNotSupportedException { Test t = new Test(); t.setField(new Field()); Test cloneT = t.clone(); System.out.println(t == cloneT); System.out.println(t.getField() == cloneT.getField()); Test deepCloneT = t.deepClone(); System.out.println(t == deepCloneT); System.out.println(t.getField() == deepCloneT.getField()); } } class Field implements Cloneable { public Field clone() throws CloneNotSupportedException { return (Field) super.clone(); } public Field deepClone() throws CloneNotSupportedException { // 沒有引用類型屬性 return this.clone(); } }
到底使用淺拷貝還是深拷貝,要根據實際情況。但是有一點是確定的,深拷貝需要創建更多對象,占用更多內存。
到此,相信大家對“java中的原始模型模式是什么”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。