C++程序代碼示例3

C++程序代碼示例3

ID:40525561

大小:144.00 KB

頁數(shù):5頁

時間:2019-08-04

C++程序代碼示例3_第1頁
C++程序代碼示例3_第2頁
C++程序代碼示例3_第3頁
C++程序代碼示例3_第4頁
C++程序代碼示例3_第5頁
資源描述:

《C++程序代碼示例3》由會員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫

1、LabExercise—PolymorphicBankingILabObjectivesInthislab,youwillpractice:1)CreatinganAccountbaseclassthatcontainsvirtualfunctionsandderivedclassesSavingsAccountandCheckingAccount.2)Definingvirtualfunctions.3)Callingvirtualfunctions.4)Downcastingwithapointerw

2、iththedynamic_castoperator.IIDescriptionoftheProblemDevelopapolymorphicbankingprogramusingtheAccounthierarchycreatedinExercise12.10.CreateavectorofAccountpointerstoSavingsAccountandCheckingAccountobjects.ForeachAccountinthevector,allowtheusertospecifyanam

3、ountofmoneytowithdrawfromtheAccountusingmemberfunctiondebitandanamountofmoneytodepositintotheAccountusingmemberfunctioncredit.AsyouprocesseachAccount,determineitstype.IfanAccountisaSavingsAccount,calculatetheamountofinterestowedtotheAccountusingmemberfunc

4、tioncalculateInterest,thenaddtheinteresttotheaccountbalanceusingmemberfunctioncredit.AfterprocessinganAccount,printtheupdatedaccountbalanceobtainedbyinvokingbaseclassmemberfunctiongetBalance.IIISampleOutputIVProblem-SolvingTips1.Toachievepolymorphism,decl

5、arethefunctionsthatshouldbecalledpolymorphicallyasvirtual.Toindicateavirtualfunctionwithinaclassdefinition,add“virtual”beforethefunctionprototype.Whenthevirtualfunctionsareredefinedinaderivedclass,thosememberfunctionprototypesshouldalsobeprecededbythekeyw

6、ordvirtualasagoodprogrammingpractice.2.TodetermineifapointertoanAccountobjectisactuallypointingtoaSavingsAccountobject,downcastittoaSavingsAccount*usingthedynamic_castoperator.Ifthepointerreturnedbythisoperationisnotthenullpointer(i.e.,0)thentheobjectisaS

7、avingsAccountobjectandthatpointercanbeusedtoaccessmembersuniquetoclassSavingsAccount.3.Rememberthatyourcompilermayrequireyoutoenablerun-timetypeinformation(RTTI)forthisparticularprojectbeforethisprogramwillruncorrectly.VYourSolution#ifndefCHECKING_H#defin

8、eCHECKING_H#include"Account.h"classCheckingAccount:publicAccount{public:CheckingAccount(double,double);private:doubletransactionFee;voidchargeFee();};#ifndefACCOUNT_H#defineACCOUNT_HclassAccount{public:Account(doubl

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動畫的文件,查看預(yù)覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫負(fù)責(zé)整理代發(fā)布。如果您對本文檔版權(quán)有爭議請及時聯(lián)系客服。
3. 下載前請仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進(jìn)行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時可能由于網(wǎng)絡(luò)波動等原因無法下載或下載錯誤,付費(fèi)完成后未能成功下載的用戶請聯(lián)系客服處理。