继承的执行顺序

  1. #include "iostream.h"
  2. class first
  3. {
  4. public:
  5.     first(void)
  6.     {
  7.         cout << "*******************************" << endl;
  8.         cout << "first 构造" << endl;
  9.         cout << "*******************************" << endl;
  10.         cout << endl;
  11.         cout << endl;
  12.     }
  13.     ~first(void)
  14.     {
  15.         cout << "*******************************" << endl;
  16.         cout << "first  析构 "  <<endl;
  17.         cout << "*******************************" << endl;
  18.         cout << endl;
  19.         cout << endl;
  20.     }
  21. };
  22. class second :public first
  23. {
  24. public:
  25.     second(void)
  26.     {
  27.         cout << "*******************************" << endl;
  28.         cout << "second 构造" << endl;
  29.         cout << "*******************************" << endl;
  30.         cout << endl;
  31.         cout << endl;
  32.     }
  33.     ~second(void)
  34.     {
  35.         cout << "*******************************" << endl;
  36.         cout << "second 析构  "  <<endl;
  37.         cout << "*******************************" << endl;
  38.         cout << endl;
  39.         cout << endl;
  40.     }
  41. };
  42. class three: public second
  43. {
  44. public:
  45.     three(void)
  46.     {
  47.         cout << "*******************************" << endl;
  48.         cout << "theree 构造" << endl;
  49.         cout << "*******************************" << endl;
  50.         cout << endl;
  51.         cout << endl;
  52.     }
  53.     ~three(void)
  54.     {
  55.         cout << "*******************************" << endl;
  56.         cout << "three 析构 "  <<endl;
  57.         cout << "*******************************" << endl;
  58.         cout << endl;
  59.         cout << endl;
  60.     }
  61. };
  62. void main()
  63. {
  64.     first i;
  65.     second j;
  66.     three k;
  67. }

 

 

///

*******************************
first 构造
*******************************


*******************************
first 构造
*******************************


*******************************
second 构造
*******************************


*******************************
first 构造
*******************************


*******************************
second 构造
*******************************


*******************************
theree 构造
*******************************


*******************************
three 析构
*******************************


*******************************
second 析构
*******************************


*******************************
first  析构
*******************************


*******************************
second 析构
*******************************


*******************************
first  析构
*******************************


*******************************
first  析构
*******************************


Press any key to continue

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值