欢迎来到天天文库
浏览记录
ID:48088186
大小:101.50 KB
页数:21页
时间:2020-01-14
《Inheritance.ppt》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、InheritanceInheritanceInheritanceallowsasoftwaredevelopertoderiveanewclassfromanexistingoneTheexistingclassiscalledtheparentclassorsuperclassThederivedclassiscalledthechildclassorsubclass.Createsanis-arelationshipThesubclassisamorespecificversionoftheOriginal(Rememberhas-a
2、isaggregation.)BookNovelDictionaryMysteryRomance2InheritanceThechildclassinheritsthemethodsanddatadefinedfortheparentclassTotailoraderivedclass,theprogrammercanaddnewvariablesormethods,orcanmodifytheinheritedonesSoftwarereuseisattheheartofinheritanceByusingexistingsoftware
3、componentstocreatenewones,wecapitalizeonalltheeffortthatwentintothedesign,implementation,andtestingoftheexistingsoftwareDerivingSubclassesInJava,weusethereservedwordextendstoestablishaninheritancerelationshipclassDictionaryextendsBook{//classcontents}4Dictionarywebster=new
4、Dictionary();webster.message();webster.defMessage();publicclassBook{protectedintpages=1500;publicStringmessage(){System.out.println(“Numberofpages:”+pages);}}publicclassDictionaryextendsBook{privateintdefinitions=52500;publicvoiddefMessage(){System.out.println(“Numberofdef
5、initions”+definitions);System.out.println(“Definitionsperpage:”+(definitions/pages));}}Numberofpages:1500Numberofdefinitions:52500Definitionsperpage:35SomeInheritanceDetailsAninstanceofachildclassdoesnotrelyonaninstanceofaparentclassHencewecouldcreateaDictionaryobjectwitho
6、uthavingtocreateaBookobjectfirstInheritanceisaone-waystreetTheBookclasscannotusevariablesormethodsdeclaredexplicitlyintheDictionaryclassTheprotectedModifierVisibilitymodifiersdeterminewhichclassmembersareinheritedandwhicharenotVariablesandmethodsdeclaredwithpublicvisibilit
7、yareinherited;thosewithprivatevisibilityarenotButpublicvariablesviolatetheprincipleofencapsulationThereisathirdvisibilitymodifierthathelpsininheritancesituations:protected7TheprotectedModifierTheprotectedmodifierallowsamemberofabaseclasstobeinheritedintoachildProtectedvisi
8、bilityprovidesmoreencapsulationthanpublicvisibilitydoesthebestpossibleencapsulationthatpe
此文档下载收益归作者所有
点击更多查看相关文章~~