2019-COMPOSITEOBJECTRUNTIMEPOLYMORPHISM:复合对象的运行时多态性-文档资料_第1页
2019-COMPOSITEOBJECTRUNTIMEPOLYMORPHISM:复合对象的运行时多态性-文档资料_第2页
2019-COMPOSITEOBJECTRUNTIMEPOLYMORPHISM:复合对象的运行时多态性-文档资料_第3页
已阅读5页,还剩12页未读 继续免费阅读

下载本文档

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

文档简介

1、Prepared byN.Sathish KumarCSE/ LecturerSKRECCOMPOSITE OBJECT RUNTIMEPOLYMORPHISM Inhentance results m a "composite obj ect at run-time. Public methods are combined into one set of public methods, but with distinct names qualified by the class name in which they are defined Data layout is combin

2、ed as well, with compile-time access control (e.g., private) still applies:Object Da1iiLutBase panDerived partObjed Mettad LiyoinBa-SE::Basej 弧e:aB葩&JDenmLDemdQDemDerrijedfiiid With inheritance, private data in the base class is still private C+ introduces the "protected clause” for allowin

3、g a derived class to have special access privileges to the base class. Protected data and methods are only visible to base classes. Use protected data and methods to selectively break encapsulation so that the subclass can access the data and/or methods. NOTE: when you construct a composite object,

4、the base class constructor is executed before the derived class constructor. That is objects are constructed from the base down the inheritance hierarchy. Usually, destruction is the reversea derived class destructor is executed before a base class destructor. Inheritance Example When a derived clas

5、s is constructed, the base class constructor is executed prior to the derived class constructor. Thus the derived class can pass arguments to the base class constructor using the initialize list.include<iostream.h>#include<conio.h>class Baseprivate:int x;public:Base() : x(0) cout«11

6、 nnnDefault BaseBase(int x) : x(x)cout«Hnnnparameter Base x=H«x Base()cout«nnnnDestructor is called11;class Derived : public Baseprivate:int y;char *s;public:Derived(): Base(), y(O),s(NULL) cout«11 nnnDefault derived class called y= n«y;Derived(int x, int y): Base(x), y(0), s(NULL)cout«HnnnDerived parameter is called x=n«x«n,y=M«y;Derived。cout«1 fnnnDerived destructor is called11;void main() clrscr();Base a;Base b(l

温馨提示

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

评论

0/150

提交评论