版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2026年消防员专业技能考核试卷(附答案)
- 2026年造价工程师考试《园林工程预算》专项训练试卷
- 2026宁波财务面试题库及答案
- 2026培训新员工面试题及答案
- 2026期货营销面试题目及答案
- 2026青蛙王子面试题目及答案
- 2026人口均衡面试题及答案
- 2026软件测试师面试题及答案
- 2026扇贝产品运营面试题及答案
- 2026射频工程师面试题及答案
- 《产业经济学》期末考试复习题库(含答案)
- 自编MSA(计数型)自动分析表
- 北京工业大学《嵌入式系统》2022-2023学年期末试卷
- GB/T 2977-2024载重汽车轮胎规格、尺寸、气压与负荷
- 深圳市步行和自行车交通系统规划设计导则
- 2024年浙江省中考英语试题卷(含答案解析)
- 经鼻高流量湿化氧疗护理
- 天津耀华嘉诚国际中学2024届高一下数学期末质量检测试题含解析
- 传染病相关知识及上报流程
- 人工智能在金融营销中的应用
- 小学二年级语文学业水平无纸化测评方案三篇范文
评论
0/150
提交评论