C++ Program using constructor and destructor
In this program, You will learn how to implement constructor and destructor in C++.
Test() { }
||
~Test () { }
Example: How to implement constructor and destructor in C++.
#include<iostream>
using namespace std;
class Test {
int x;
public:
Test() {
cout << "Constructor is called here";
x = 10;
}
~Test() {
cout << "\nDestructor is called here";
}
void display() {
cout << "\nThe value of x is:" << x;
}
};
int main() {
Test tt;
tt.display();
return 0;
}
Output:
Constructor is called here
The value of x is:10
Destructor is called here