


版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025年航空航天高精度加工技术在航空航天器零部件制造中的铝合金表面处理技术报告
- 2025年高校创新创业教育课程体系改革与教学质量提升报告
- 2025年乌鲁木齐驾校教练员考试题库
- 福建省泉州市泉港第一中学2025年化学高二下期末统考试题含解析
- 2025至2030马铃薯产品市场行业发展趋势分析与未来投资战略咨询研究报告
- 2025届山东省泰安一中、宁阳一中化学高二下期末综合测试模拟试题含解析
- 2025届广东省吴川一中高二下化学期末经典模拟试题含解析
- 湖南省衡阳市重点名校2025届高二化学第二学期期末监测试题含解析
- 2025至2030被褥行业发展趋势分析与未来投资战略咨询研究报告
- 湖南省永州市2025届高一下化学期末检测模拟试题含解析
- 育婴员考试题型及答案
- 科室建立血糖管理制度
- 四川成都东方广益投资有限公司下属企业招聘笔试题库2025
- 华为公司试用期管理制度
- 保险合规知识课件
- 2025-2030中国云原生保护平台组件行业前景趋势与投资盈利预测报告
- 商业大厦机电系统调试
- 2025企业并购合同协议模板
- 【恒顺醋业公司基于杜邦分析的盈利能力浅析14000字论文】
- 电网技术改造及检修工程定额和费用计算规定2020 年版答疑汇编2022
- 2025年生态文明建设的考核试卷及答案
评论
0/150
提交评论