双语版C++程序设计(第3版) 课件 12 Polymorphism_第1页
双语版C++程序设计(第3版) 课件 12 Polymorphism_第2页
双语版C++程序设计(第3版) 课件 12 Polymorphism_第3页
双语版C++程序设计(第3版) 课件 12 Polymorphism_第4页
双语版C++程序设计(第3版) 课件 12 Polymorphism_第5页
已阅读5页,还剩22页未读 继续免费阅读

付费下载

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

Chapter12Polymorphism

12.1WhatispolymorphismThewordpolymorphismisderivedfromaGreekwordmeaning“manyforms”.Polymorphismisoneofthemostimportantfeaturesinobject-orientedprogrammingandreferstotheabilityofdifferentobjectstoresponddifferentlytothesamecommand(or‘message’inobject-orientedprogrammingterminology).12.1WhatispolymorphismPolymorphismisusedwidelyinoureverydaylanguage.Forexample,thecommand‘open’meansdifferentthingswhenappliedtodifferentobjects.Openingabankaccountisverydifferentfromopeninga window,whichisdifferentfromopeningawindowonacomputerscreen.Thecommand(‘open’)isthesame,butdependingonwhatitisappliedto(theobject)theresultantactionsaredifferent.ProgramExampleP12A12.1WhatispolymorphismProgramExampleP12A12.1WhatispolymorphismItcanbeseenfromtheoutputthattheobjectsHALandPChaverespondeddifferentlytothesamehello()commandsenttothemonlines28and29.12.1WhatispolymorphismPolymorphismcanbedividedintotwobroadcategories:static(orcompile-time)anddynamic(orrun-time)polymorphism.Staticpolymorphismoccurswhentheprogramisbeingcompiled,dynamicpolymorphismwhentheprogramisactuallyrunning.C++hasthreestaticpolymorphismmechanisms:functionoverloading(chapter7)operatoroverloading(chapter10)andtemplates(chapter13).Functionswiththesamenamesanddifferentparameterlistsmeanfunctionoverloading.12.2VirtualfunctionsNormally,whichfunctionacallreferstoismadeatcompiletime.Thecompilerknowswhichfunctiontocallbasedontheobjectthatcallsit.Thisiscalledstaticorearlybinding.Indynamicorlatebinding,itisleftuntilrun-timetodeterminewhichfunctionshouldbecalled.Thisdecisionisbasedontheobjectmakingthecall.12.2VirtualfunctionsC++usesvirtualfunctionstoimplementdynamicbinding.Virtualfunctionsallowpolymorphismtoworkinallsituations.Thekeywordvirtualisoptionalinthederivedclasses,althoughitisprobablyagoodideatoincludeitforthesakeofclarity.Thisexampleclearlyshowsthatthevirtualfunctionarea()andtheobjectcallingitarenotboundtogetheruntilrun-timeProgramExampleP12D12.2VirtualfunctionsProgramExampleP12D12.2VirtualfunctionsProgramExampleP12D12.2VirtualfunctionsProgramExampleP12D12.2Virtualfunctions12.2VirtualfunctionsLine70definesptrtobeapointertothebaseclasscircle.Normally,apointertoonetypeofdatacannotbeusedtopointtodataofanothertype,e.g.apointertoanintdatatypecannotpointtoafloatdatatype.However,apointertoabaseclasscanalsobeusedasapointertoanobjectofaclassderivedfromthatbaseclass.Thisiswhyptrcanbeusedinlines82,88and92asapointertoanyofthenewlycreatedobjects.12.2VirtualfunctionsLine94usesptr(whichcanbepointingtoanyoftheobjects)tocallthememberfunctionmessage_area().12.2Virtualfunctions12.2.1WhentousevirtualfunctionsTherearememoryandexecutiontimeoverheadsassociatedwithvirtualfunctions,sobejudiciousinthechoiceofwhetherabaseclassfunctionisvirtualornot.Ingeneral,declareabaseclassmemberfunctionasvirtualifitmaybeoverriddeninaderivedclass.12.2.2OverridingandoverloadingOverloadingisacompilertechniquethatdistinguishesbetweenfunctionswiththesamenamebutwithdifferentparameterlists.Functionoverloadingiscoveredinchapter7.Overridingoccursininheritancewhenamemberfunctionofaderivedclasshasthesamenameandthesameparametersasamemberfunctionofitsbaseclass.12.3AbstractbaseclassesAbaseclassthatcontainsapurevirtualfunctioniscalledanabstractbaseclass.virtualfunction.Thebaseclassmemberfunctionhasnocodeandisassignedto0.virtualvoiddisplay_details()=0;Aclassmemberfunctiondefinedinthiswayiscalledapurevirtualfunction.Apurevirtualfunctionisrequiredbythecompilerbutdoesn’tactuallydoanything.Apurevirtualfunctionisoverriddeninallthederivedclassesandhencethereisnoneedtoimplementit.12.3AbstractbaseclassesAbstractbaseclasses(ABCs)arenotusedtocreateobjects,butexistsolelyasabaseforderivingotherclasses.Itisnotpossibletodefineanobjectofanabstractbaseclass,i.e.objectsofanabstractbaseclasscannotbeinstantiated.Althoughaclasshierarchydoesnothavetocontainanabstractbaseclass,typicallyoneisdefinedduringthefirststageofdevelopingaclasshierarchy.ShapeRectangleSquareTriangleCircle••••inherits(isa)SumtheareaofdifferentShapes?Example:Shapeclasshierarchy12.3AbstractbaseclassesclassShape//Abstract

{

public:

//PurevirtualFunction

virtualvoidget_area()=0;};AclasswithoneormorepurevirtualfunctionsisanAbstractClassShapemakessenseonlyasabaseofsomeclassesderivedfromit.Servesasa“category”Objectsofabstractclasscan’tbecreatedShapes;//error:variableofanabstractclassAbstractClasses

&PureVirtualFunctions12.3AbstractbaseclassesCircle::Circle(doubler){radius=r;}doubleCircle::get_area(){constdoublepi=3.14;returnpi*radius*radius;}DerivedClassCircleclassCircle:publicShape{public: Circle(doubler); doubleget_area();private: doubleradius;};12.3AbstractbaseclassesRectangle::Rectangle(doublew,doublel){width=w;length=l;}doubleRectangle::get_area(){returnwidth*length;}classRectangle:publicShape{public: Rectangle(doublew,doublel); doubleget_area();private: doublewidth,length;};DerivedClassRectangle12.3AbstractbaseclassesHowtosumdifferentShape?intmain(){Circlecircle(3);Rectanglerect(4,5);doublesum=0;sum+=circle.get_area();sum+=rect.get_area();return0;}StaticBinding12.3AbstractbaseclassesHowtosumdifferentShape?intmain(){Shape*shapes[2]={newCircle(3),newRectangle(4,5)};doublesum=0;for(inti=0;i<2;i++){sum+=shapes[i]->get_area();}cout<<sum<<endl;return0;}DynamicBinding12.3AbstractbaseclassesProgrammingpitfalls1.Itiseasytogetconfusedbetweenvirtualmemberfunctionsandvirtualbaseclasses.Althoughbothareusedinthecontextofinheritance,theyarenotinfactrelated.Perhapsabetternameforvirtualfunctionswouldbe‘run-time-replaceable’functions?2.Anabstractbaseclassmusthaveatleastonederivedclass.Itisanerrortoattempttodefineanobjectofanabstractbaseclass.3.Avirtualmemberfunctioninabaseclasscanonlybeoverriddenin

aderivedclassifthememberfunctionintheder

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

最新文档

评论

0/150

提交评论