實驗五:責(zé)任鏈模式_第1頁
實驗五:責(zé)任鏈模式_第2頁
實驗五:責(zé)任鏈模式_第3頁
實驗五:責(zé)任鏈模式_第4頁
實驗五:責(zé)任鏈模式_第5頁
已閱讀5頁,還剩7頁未讀 繼續(xù)免費閱讀

下載本文檔

版權(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)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論