版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
第五章原型模式五.一問題地提出五.二原型模式五.三原型復(fù)制具體實現(xiàn)方法五.四應(yīng)用示例五.一問題地提出在計算機程序開發(fā)過程,有時會遇到為一個類創(chuàng)建多個實例地情況,這些實例內(nèi)部成員往往完全相同或有細(xì)微地差異,而且實例地創(chuàng)建開銷比較大或者需要輸入較多參數(shù),如果能通過復(fù)制一個已創(chuàng)建地對象實例來重復(fù)創(chuàng)建多個相同地對象,這就可以大大減少創(chuàng)建對象地開銷,這個時候就需要原型模式。一.淺復(fù)制。五.二原型模式二.深復(fù)制。五.三原型復(fù)制具體實現(xiàn)方法考慮學(xué)生對象復(fù)制問題。classStudent{ Stringname; //姓名 intage; //年齡 Addressadd; //籍貫信息 Student(Stringna,inta,Addressadd){ =na; age=a; this.add=add; } publicStringgetName(){returnname;} publicvoidsetName(Stringname){=name;} publicintgetAge(){returnage;} publicvoidsetAge(intage){this.age=age;} publicAddressgetAdd(){returnadd;} publicvoidsetAdd(Addressadd){this.add=add;} }classAddress{ Stringpro; //出生省 Stringcity; //出生市 Stringzip; //出生地郵編 publicAddress(Stringp,Stringc,Stringz){ pro=p;city=c;zip=z; } publicStringgetPro(){returnpro;} publicvoidsetPro(Stringpro){=pro;} publicStringgetCity(){returncity;} publicvoidsetCity(Stringcity){this.city=city;} publicStringgetZip(){returnzip;} publicvoidsetZip(Stringzip){this.zip=zip;} }五.三.一構(gòu)造函數(shù)方法(一)淺復(fù)制。 publicclassStudent{ //其它所有代碼同五.三,略 Student(Students){ name=s.getName(); age=s.getAge(); add=s.getAdd(); }}(二)深復(fù)制。classAddress{ //其它所有代碼同五.三,略 publicAddress(Addressadd){ pro=add.getPro(); city=add.getCity(); zip=add.getZip(); }}classStudent{ //其它所有代碼同五.三,略 Student(Students){ name=s.getName(); age=s.getAge(); add=newAddress(s.getAdd()); }}五.三.二利用Cloneable接口方法(一)淺復(fù)制。publicclassStudentimplementsCloneable{ //其它代碼同五.三 protectedObjectclone()throwsCloneNotSupportedException{ returnsuper.clone(); } }(二)深復(fù)制。
classAddressimplementsCloneable{
//其它代碼同五.三
protectedObjectclone()throwsCloneNotSupportedException{
Addresss=(Address)super.clone();
returns;
}
}
classStudentimplementsCloneable{
//其它代碼同五.三
protectedObjectclone()throwsCloneNotSupportedException{
Students=(Student)super.clone();
s.setAdd((Address)add.clone());
returns;
}
}五.三.三利用Serializable序列化接口方法classAddressimplementsSerializable{ //其它代碼同五.三}classStudentimplementsCloneable,Serializable{ //其它代碼同六.三 protectedObjectclone()throwsCloneNotSupportedException{ Objectobj=null; try{ ByteArrayOutputStreambos=newByteArrayOutputStream(); ObjectOutputStreamoos=newObjectOutputStream(bos); oos.writeObject(this); //從流里讀回來 ByteArrayInputStreambis=newByteArrayInputStream(bos.toByteArray()); ObjectInputStreamois=newObjectInputStream(bis); obj=ois.readObject(); } catch(Exceptione){e.printStackTrace();} returnobj; } }五.四應(yīng)用示例例五-一原型管理器及其應(yīng)用。importjava.util.*;classPrototypeManager{//定義一個Hashtable,用于存儲原型對象privateHashtableht=newHashtable();privatestaticPrototypeManagerpm=newPrototypeManager();publicvoidaddPrototype(Stringkey,Objectobj){ht.put(key,obj);}publicObjectgetPrototype(Stringkey){returnht.get(key);}publicstaticPrototypeManagergetPrototypeManager(){returnpm;}}例如:以學(xué)生基本信息為例,但內(nèi)容與五.三節(jié)有所不同,基本類如下所示。publicclassStudentimplementsCloneable{ Stringname;//學(xué)生姓名 intage; //年齡 PubInfoinfo; //公信息 publicStringgetName(){returnname;} publicvoidsetName(Stringname){=name;} publicintgetAge(){returnage;} publicvoidsetAge(intage){this.age=age;} publicPubInfogetInfo(){returninfo;} publicvoidsetInfo(PubInfoinfo){=info;} protectedObjectclone()throwsCloneNotSupportedException {returnsuper.clone();} }classPubInfoimplementsCloneable{ Stringcollege; //所在大學(xué) Stringcity; //所在城市 Stringzip; //郵編 publicPubInfo(Stringco,Stringc,Stringz){ college=co;city=c;zip=z; } publicStringgetCollege(){returncollege;} publicvoidsetCollege(Stringcollege){this.college=college;} publicStringgetCity(){returncity;} publicvoidsetCity(Stringcity){this.city=city;} publicStringgetZip(){returnzip;} publicvoidsetZip(Stringzip){this.zip=zip;} protectedObjectclone()throwsCloneNotSupportedException {returnsuper.clone();}}測試類地具體代碼如下所示。importjava.util.*;publicclassTest{ publicstaticvoidmain(String[]args)throwsException{ intm=一零,n=一零; PrototypeManagerpm=PrototypeManager.getPrototypeManager(); PubInfop=newPubInfo("liaoshi","dalian","一一六零八一"); Students=newStudent(); //創(chuàng)建遼師學(xué)生原型對象 s.setInfo(p); pm.addPrototype("liaoshi",s); //加入原形管理器 PubInfop二=newPubInfo("dagong","dalian","一一六零二三"); Students二=newStudent(); //創(chuàng)建大工學(xué)生原型對象 s二.setInfo(p二); pm.addPrototype("dagong",s二); //加入原形管理器
Scannersc=newScanner(System.in); Vector<Student>vec=newVector(); //創(chuàng)建遼師學(xué)生集合 Studentt=(Student)pm.getPrototype("liaoshi");//獲取原型對象 for(inti=零;i<m;i++){ Studentst=(Student)t.clone(); //通過淺復(fù)制創(chuàng)建新學(xué)生對象 st.setName(sc.nextLine()); //輸入并設(shè)置姓名 st.setAge(sc.nextInt()); //輸入并設(shè)置年齡
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 晉中信息學(xué)院《數(shù)字娛樂導(dǎo)論》2023-2024學(xué)年第一學(xué)期期末試卷
- 湖北汽車工業(yè)學(xué)院《藝術(shù)投融資》2023-2024學(xué)年第一學(xué)期期末試卷
- 鶴崗師范高等??茖W(xué)校《軟件項目案例分析》2023-2024學(xué)年第一學(xué)期期末試卷
- 重慶三峽醫(yī)藥高等??茖W(xué)?!豆た鼐W(wǎng)絡(luò)與通信》2023-2024學(xué)年第一學(xué)期期末試卷
- 重慶財經(jīng)職業(yè)學(xué)院《美術(shù)欣賞與創(chuàng)作》2023-2024學(xué)年第一學(xué)期期末試卷
- 浙江宇翔職業(yè)技術(shù)學(xué)院《數(shù)字取證技術(shù)》2023-2024學(xué)年第一學(xué)期期末試卷
- 多金屬選礦生產(chǎn)線和尾礦庫項目可行性研究報告模板-備案拿地
- 空壓機工作原理及結(jié)構(gòu)圖解析
- 中國地質(zhì)大學(xué)(武漢)《企業(yè)經(jīng)營沙盤實訓(xùn)》2023-2024學(xué)年第一學(xué)期期末試卷
- 八年級散文閱讀專題訓(xùn)練-八年級語文上冊知識梳理與能力訓(xùn)練
- 2024年杭州市中醫(yī)院高層次衛(wèi)技人才招聘筆試歷年參考題庫頻考點附帶答案
- 2024-2025學(xué)年人教版八年級數(shù)學(xué)上冊期末測試模擬試題(含答案)
- 《環(huán)境感知技術(shù)》2024年課程標(biāo)準(zhǔn)(含課程思政設(shè)計)
- GB/T 45079-2024人工智能深度學(xué)習(xí)框架多硬件平臺適配技術(shù)規(guī)范
- 2024年安徽省銅陵市公開招聘警務(wù)輔助人員(輔警)筆試自考練習(xí)卷二含答案
- 國家安全教育高教-第六章堅持以經(jīng)濟安全為基礎(chǔ)
- 水處理藥劑采購項目技術(shù)方案(技術(shù)方案)
- 2024年城市環(huán)衛(wèi)一體化服務(wù)合同
- 工地春節(jié)安全培訓(xùn)
- 2024年代持房屋合作協(xié)議書模板
評論
0/150
提交評論