In this tutorial, we will be discussing a program to understand the order of constructor/ destructor in C++.
Order of constructor/destructor refers to the pattern in which the constructors of various classes are called during inheritance of classes.
Example
#include <iostream>
using namespace std;
//parent class
class Parent{
public:
Parent(){
cout << "Inside base class" << endl;
}
};
//child class
class Child : public Parent{
public:
Child(){
cout << "Inside sub class" << endl;
}
};
int main() {
Child obj;
return 0;
}Output
Inside base class Inside sub class