Call parent constructor and pass in parameter : Inheritance « Class « C++






Call parent constructor and pass in parameter

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

class derived : public base 
{
   int j;
 public:
   derived(int x, int y): base(y){
     j=x; 
     cout << "Constructing derived.\n";
   }
   ~derived(void) {cout << "Destructing derived.\n";}
   void show(void) {cout << i << ", " << j << endl;}
 };

int main(void)
{
   derived object(3,4);

   object.show();
}
  
    
  








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.Cascade constructor and destructor call
11.Access control under inheritance