版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認(rèn)領(lǐng)
文檔簡介
實驗五:責(zé)任鏈模式實驗五:責(zé)任鏈模式實驗五:責(zé)任鏈模式實驗五:責(zé)任鏈模式編制僅供參考審核批準(zhǔn)生效日期地址:電話:傳真:郵編:實驗5:責(zé)任鏈模式一、實驗?zāi)康谋緦嶒炓髮W(xué)生掌握責(zé)任鏈模式,要求學(xué)生理解責(zé)任鏈模式中的二種角色并完成類的定義及測試。二、實驗任務(wù)計算整數(shù)的階乘。要求在計算階乘時綜合考慮計算速度與內(nèi)存占用多少,使用責(zé)任鏈模式分析有哪些類以及這些類的角色,完成這些類的定義并分別測試每一種處理情況。答:處理者(Handler)角色:類Handler具體處理者(ConcreteHandler)角色:類UseInt、類UseLong、類UseBigInteger(1)處理者(Handler)publicinterfaceHandler{publicvoidhandleRequest(Stringstr);publicvoidsetNextHandler(Handlerhandler);}(2)具體處理者(ConcreteHandler)publicclassUseIntimplementsHandler{ privateHandlerhandler; privateintresult=1;publicvoidhandleRequest(Stringstr){ try{ intn=(str); inti=1; while(i<=n){ result=result*i; if(result<=0){ "超出我的能力范圍,我計算不了"); (str); return; } i++; } "的階乘:"+result+"\n"); }catch(NumberFormatExceptionexp){ }}publicvoidsetNextHandler(Handlerhandler){ =handler;}}publicclassUseLongimplementsHandler{privateHandlerhandler;longresult=1;publicvoidhandleRequest(Stringstr){ try{ inti=1; longn=(str); while(i<=n){ result=result*i; if(result<=0){ "超出我的能力范圍,我計算不了"); (str); return; } i++; } "的階乘:"+result+"\n"); }catch(NumberFormatExceptionexp){ } }publicvoidsetNextHandler(Handlerhandler){ =handler;}}publicclassUseBigIntegerimplementsHandler{ privateHandlerhandler; privateBigIntegerresult=newBigInteger("1");publicvoidhandleRequest(Stringstr){ BigIntegern=newBigInteger(str); BigIntegerONE=newBigInteger("1"); BigIntegeri=ONE; while(n)<=0){ result=(i); i=(ONE); } "的階乘:"+result+"\n");}publicvoidsetNextHandler(Handlerhandler){ =handler;}}(3)測試類:publicclassTest{privateHandleruseInt,useLong,useBigInteger; publicvoidcreateChain(){ useInt=newUseInt(); useLong=newUseLong(); useBigInteger=newUseBigInteger(); (useLong); (useBigInteger); } publicvoidresponseClient(Stringstr){ "計算"+str+"的階乘"); (str); } publicstaticvoidmain(String[]args){ Testtest=newTest(); (); ("10"); ("20"); ("32"); }}運行截圖如下:采購審批往往是分級進行的,其常常根據(jù)采購金額的不同由不同層次的主管人員來審批。例如,主任可以審批5萬元以下(不包括5萬元)的采購單,副董事長可以審批5萬元至10萬元(不包括10萬元)的采購單,董事長可以審批10萬元至50萬元(不包括50萬元)的采購單,50萬元及以上的采購單就需要開董事會討論決定。使用責(zé)任鏈模式分析有哪些類以及這些類的角色,完成這些類的定義并分別測試每一種處理情況。答:處理者(Handler)角色:類Handler具體處理者(ConcreteHandler)角色:類、類Vice_president、類President、類Meetting(1)處理者(Handler)publicinterfaceHandler{publicvoidhandleRequest(Stringstr);publicvoidsetNextHandler(Handlerhandler);}(2)具體處理者(ConcreteHandler)publicclassChairManimplementsHandler{ Handlerhandler; publicvoidrequestHandle(Stringstr){ try{ longmoney=(str); if(money<50000){ "主任審批"+money+"元"); }else{ "元"+"超出主任范疇"); (str); } }catch(Exceptione){ } } publicvoidsetNextHandler(Handlerhandler){ =handler; }}classVice_presidentimplementsHandler{ Handlerhandler; publicvoidrequestHandle(Stringstr){ try{ longmoney=(str); if(money>=50000&&money<100000){ "副董事長審批"+money+"元"); }else{ "元"+"超出副董事長范疇"); (str); } }catch(Exceptione){ } } publicvoidsetNextHandler(Handlerhandler){ =handler; }}classPresidentimplementsHandler{ Handlerhandler; publicvoidrequestHandle(Stringstr){ try{ longmoney=(str); if(money>=100000&&money<500000){ "董事長審批"+money+"元"); }else{ "元"+"超出董事長范疇"); (str); } }catch(Exceptione){ } } publicvoidsetNextHandler(Handlerhandler){ =handler; }}classMeettingimplementsHandler{ Handlerhandler; publicvoidrequestHandle(Stringstr){ try{ BigIntegermoney=newBigInteger(str); if(newBigInteger("500000"))>=0){ "會議審批"+money+"元"); } }catch(Exceptione){ } } publicvoidsetNextHandler(Handlerhandler){ =handler; }}(3)測試類:publicclassTest{ ChairManchairman; Vice_presidentvice_president; Presidentpresident; Meettingmeetting; publicvoidcreateChine(){ chairman=newChairMan(); vice_president=newVice_president(); president=newPresident(); meetting=newMeetting(); (vice_president); (president); (meetting); } publicvoidsetClientRequest(Stringstr){ "采購金額:"+str+"元"); (str); } publicstaticvoidmain(String[]args){ Testtest=newTest(); (); ("6000"); ("60000"); ("110000"); ("6000000"); }}運行截圖如下:公司請假審批流程如下:如果請假小于3天只需要項目經(jīng)理批復(fù)就行;如果請假大于等于3天,小于7天需要人事經(jīng)理批復(fù);如果請假大于等于7天,小于15天需要總經(jīng)理批復(fù);如果申請請假大于等于15天,決絕批復(fù)。使用責(zé)任鏈模式分析有哪些類以及這些類的角色,完成這些類的定義并分別測試每一種處理情況。答:處理者(Handler)角色:類Handler具體處理者(ConcreteHandler)角色:類Project_Manager、類Personel_Manager、類Top_Manager、類Meetting(1)處理者(Handler)publicinterfaceHandler{publicvoidhandleRequest(Stringstr);publicvoidsetNextHandler(Handlerhandler);}(2)具體處理者(ConcreteHandler)publicclassProject_ManagerimplementsHandler{ Handlerhandler; publicvoidrequestHandle(Stringstr){ try{ intday=(str); if(day<3){ "項目經(jīng)理批復(fù)\n"); }else{ "超出項目經(jīng)理職權(quán)"); (str); } }catch(Exceptione){ } } publicvoidsetNextHandler(Handlerhandler){ =handler; }}publicclassPersonel_ManagerimplementsHandler{ Handlerhandler; publicvoidrequestHandle(Stringstr){ try{ intday=(str); if(day>=3&&day<7){ "人事經(jīng)理批復(fù)\n"); }else{ "超出人事經(jīng)理職權(quán)"); (str); } }catch(Exceptione){ } } publicvoidsetNextHandler(Handlerhandler){ =handler; }}publicclassTop_ManagerimplementsHandler{ Handlerhandler; publicvoidrequestHandle(Stringstr){ try{ intday=(str); if(day>=7&&day<15){ "總經(jīng)理批復(fù)\n"); }else{ "總經(jīng)理考慮"); (str); } }catch(Exceptione){ } } publicvoidsetNextHandler(Handlerhandler){ =handler; }}publicclassMeettingimplementsHandler{ Handlerhandler; publicvoidrequestHandle(Stringstr){ try{ intday=(str); if(day>=15){
溫馨提示
- 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)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024年度衛(wèi)星導(dǎo)航系統(tǒng)服務(wù)合同
- 2024天然氣運輸物流信息化建設(shè)合同
- 2024常見簽訂勞動合同陷阱
- 2024年工程項目驗收與交付合同
- 2024年建筑工程混凝土專項分包協(xié)議
- 2024年度噸不銹鋼帶打印功能電子地磅秤技術(shù)支持合同
- 2024年大數(shù)據(jù)服務(wù)合作協(xié)議
- 2024年度環(huán)保項目工程設(shè)計與施工合同
- 2024年度電子商務(wù)平臺技術(shù)支持與運營服務(wù)合同
- 2024年度水果購銷合同
- 污泥( 廢水)運輸服務(wù)方案(技術(shù)方案)
- 公司章程范本杭州工商docx
- 職業(yè)院校面試題目及答案
- 全護筒跟進旋挖施工方案
- 海水淡化處理方案
- 初中數(shù)學(xué)基于大單元的作業(yè)設(shè)計
- 小學(xué)一年級下冊數(shù)學(xué)期末考試質(zhì)量分析及試卷分析
- 原材料情況說明范本
- 相鄰企業(yè)間安全管理協(xié)議
- 裝飾裝修工程售后服務(wù)具體措施
- 乙炔發(fā)生器、電石庫安全檢查表
評論
0/150
提交評論