- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
《面向对象程序设计C》(双语课件PPT)lecture11
Main contents Introduction Single-inherit Modes of inherit Multi-inherit Constructor and Destructor in derived classes Multi-inherit with member objects Ambiguity Objectives How to define derived class according to different modes of inherit, i.e., public inherit, private inherit and protected inherit. How to realize the constructor and destructor in the derived class. Grasp the mechanism of derived class with member objects in case of multi-inherit. Review questions : Please tell the difference of public members and private members in a class. We can define friend functions and member functions in a class, what is their difference? Give the answers of the following two programs. Program 1: Tell whether the program is wrong and how to correct it. class Point { double X,Y; public: Point(double xx, double yy) {X=xx;Y=yy;} void SetXY(double xx, double yy) {X=xx;Y=yy;} double GetX() {return X;} double GetY() {return Y;} }; void main() { Point p1; p1.SetXY(1,2); coutX= p1.X\tY=p1.Yendl;} Program 2: Tell whether the program is wrong and how to correct it. class Point { public: Point(double xx=0, double yy=0) {X=xx; Y=yy;} double GetX() { return X;} double GetY() { return Y; } private: double X,Y; }; double Dist( Point a, Point b) { double dx=a.X-b.X; double dy=a.Y-b.Y; return sqrt(dx*dx+dy*dy);} Introduction Important concepts Purpose of inherit and derivation Two types of inherit and derivation Important concepts The process of getting the specialties of an existing class is known as inherit. The process of constructing a new class by adding self-specialties based on an existing class is named as derivation. The existing class inherited by is called base class or father class. The new class constructed by derivation is called derived class or sub-class. Example: // an existing class person class person{ char *Name; int Age; char Sex; public: void Init1(char * name
您可能关注的文档
- 《网络社会学》课件PPT-网络文化.ppt
- 《网络营销》课件PPTchapter1 The Big Picture.ppt
- 《网络营销》课件PPTchapter10 Product.ppt
- 《网络营销》课件PPTchapter12 Distribution.ppt
- 《网络营销》课件PPTchapter13 E-Marketing Communication.ppt
- 《网络综合布线系统工程、工程布线》第2章网络综合布线系统工程常用标准.ppt
- 《网络营销》课件PPTchapter14 CRM 客户关系管理.ppt
- 《网络营销》课件PPTchapter2 Strategic E-Marketing 战略市场营销.ppt
- 《网络营销》课件PPTchapter9 Differentiation and Positioning 差异化和定位.ppt
- 《网络设备配置与管理》课件1课程简介.ppt
- 《面向对象程序设计C++》(双语课件PPT)Lecture 2 A Tour of C++.ppt
- 《面向对象程序设计C++》(双语课件PPT)Lecture 3 A Tour of the Standard Library.ppt
- 《面向对象程序设计C++》(双语课件PPT)Lecture 5 Pointer to Function, Macros, Namespace.ppt
- 《面向对象程序设计C++》(双语课件PPT)Lecture 4 Functions.ppt
- 《面向对象程序设计C++》(双语课件PPT)Lecture 6&7 Classes.ppt
- 《面向对象程序设计C++》(双语课件PPT)lecture 9&10 Operator Overloading.ppt
- 《面向对象程序设计C++》(双语课件PPT)Lecture 8 Pointers and Class Supplement.ppt
- 《鞋靴结构设计》课件1.2 鞋楦各种点的标定.ppt
- 《鞋靴结构设计》课件1.1 鞋靴帮样基本结构.ppt
- 《鞋靴结构设计》课件2.1 低腰皮鞋帮样设计基本规律.ppt
原创力文档


文档评论(0)