网站大量收购独家精品文档,联系QQ:2885784924

c继承经典例子.doc

  1. 1、本文档共44页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
c继承经典例子

c++继承经典例子 #include iostream.h class Base { private: ? ? ? ? int b_number; public: ? ? ? ? Base( ){} ? ? ? ? Base(int i) : b_number (i) { } ? ? ? ? int get_number( ) {return b_number;} ? ? ? ? void print( ) {cout b_number endl;}? ? ? ? }; class Derived : public Base { private: ? ? ? ? int d_number; public: // constructor, initializer used to initialize the base part of a Derived object. ? ? ? ? Derived( int i, int j ) : Base(i), d_number(j) { };? ? ? ? ? ? ? ? // a new member function that overrides the print( ) function in Base ? ? ? ? void print( ) ? ? ? ? { ? ? ? ? ? ? ? ? cout get_number( ) ;? ? ? ? ? ? ? ? ? ? ? ? // access number through get_number( ) ? ? ? ? ? ? ? ? cout d_number endl; ? ? ? ? } }; int main( ) { ? ? ? ? Base a(2); ? ? ? ? Derived b(3, 4); ? ? ? ? cout a is ; ? ? ? ? a.print( );? ? ? ? ? ? ? ? // print( ) in Base ? ? ? ? cout b is ; ? ? ? ? b.print( );? ? ? ? ? ? ? ? // print( ) in Derived ? ? ? ? cout base part of b is ; ? ? ? ? b.Base::print( );? ? ? ? ? ? ? ? // print( ) in Base ? ? ? ? return 0; sdb 新手上路 UID 1050 精华 0 积分 0 帖子 25 阅读权限 10 注册 2007-4-2 状态 离线 #2 使用道具?? 发表于 2007-7-11 14:16? 资料? 个人空间? 短消息? 加为好友? 没有虚析构函数,继承类没有析构 //Example:??non- virtual destructors for dynamically allocated objects. #include iostream.h #include string.h class Thing { public: virtual void what_Am_I( ) {cout I am a Thing.\n;} ~Thing(){coutThing destructorendl;} }; class Animal : public Thing {?? public: virtual void what_Am_I( ) {cout I am an Animal.\n;} ~Animal(){coutAnimal destructorendl;} }; void main( ) { ? ?Thing *t =new Thing;? ?? ? ? ?Animal*x = new Animal; ? ?Thing* array[2]; ? ?array[0] = t;?// base pointer ? ?array[1] = x;? ? ? ? ? ? ? ? ? for (int i=0; i2; i++)? ?array-what_Am_I( ) ; ? ?delete array[0]; ? ?delete array[1]; ? ?return ; } sdb 新手上路 UID 1050 精华 0 积分 0 帖子 25 阅读权限 10 注册 2007-4-2 状态 离线 #3 使用道具?? 发表于 2007-7-11 14:20? 资料? 个人空间? 短消息? 加为好友? 纯虚函数,多态 #include iostream.h #include math

文档评论(0)

haihang2017 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档