Startertutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
Home » Programming » C++ Programming » Programs » Inheritance » CPP program to illustrate the order of execution of constructors and destructors in inheritance
Suryateja Pericherla Categories: Inheritance. No Comments on CPP program to illustrate the order of execution of constructors and destructors in inheritance
4.3
(8)

In this article we will learn to implement a CPP program to illustrate the order of execution of constructors and destructors in inheritance. A C++ program is provided below to demonstrate in which order constructors and destructors are executed in inheritance.

 

Program is as follows:

#include <iostream>
using namespace std;
class A
{
	public:
		A()
		{
			cout<<"A's Constructor"<<endl;
		}
		~A()
		{
			cout<<"A's Destructor"<<endl;
		}
};
class B : A
{
	public:
		B()
		{
			cout<<"B's Constructor"<<endl;
		}
		~B()
		{
			cout<<"B's Destructor"<<endl;
		}
};
class C : B
{
	public:
		C()
		{
			cout<<"C's Constructor"<<endl;
		}
		~C()
		{
			cout<<"C's Destructor"<<endl;
		}
};
int main()
{
	C c;
	return 0;
}

 

Output for the above program is as follows:

A's Constructor
B's Constructor
C's Constructor
C's Destructor
B's Destructor
A's Destructor

 

How useful was this post?

Click on a star to rate it!


Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests.


We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Leave a Reply

Your email address will not be published. Required fields are marked *

Facebook
Twitter
Pinterest
Youtube
Instagram
Blogarama - Blog Directory