Cascade constructor and destructor call : Inheritance « Class « C++






Cascade constructor and destructor call

  
#include <iostream>
using namespace std;
class base 
{
 public:
   base(void) {cout << "Constructing base.\n";}
   ~base(void) {cout << "Destructing base.\n";}
 };

class derived1 : public base 
{
 public:
   derived1(void) {cout << "Constructing derived1.\n";}
   ~derived1(void) {cout << "Destructing derived1.\n";}
 };

class derived2 : public derived1 
{
 public:
   derived2(void) {cout << "Constructing derived2.\n";}
   ~derived2(void) {cout << "Destructing derived2.\n";}
 };

int main(void)
{
   derived2 object;
}
  
    
  








Related examples in the same category

1.Public inheritancePublic inheritance
2.Three level public inherianceThree level public inheriance
3.Make field public during private inheritance
4.Demonstrate inheriting a protected base class.Demonstrate inheriting a protected base class.
5.A simple example of inheritance.A simple example of inheritance.
6.Share member variables between sub classShare member variables between sub class
7.Virtual functions retain virtual nature when inherited.Virtual functions retain virtual nature when inherited.
8.Inherit base as privateInherit base as private
9.call contructor from parent class
10.Call parent constructor and pass in parameter
11.Access control under inheritance