Destructor Example in C++


  • In the main function, two objects s1 and s2 of the Student class are created.
  • When s1 and s2 are created, the constructor of the Student class is invoked, which prints "Constructor Invoked" to the console.
  • When the main function is finished, the objects s1 and s2 go out of scope and are destroyed. This invokes the destructor of the Student class, which prints "Destructor Invoked" to the console.

Source Code

#include <iostream>
using namespace std;
class Student
 {
  public:
    Student()
    {
       cout<<"Constructor Invoked"<<endl;
    }
    ~Student()
    {
       cout<<"Destructor Invoked"<<endl;
    }
};
int main(void)
{
  Student s1;
  Student s2;
  return 0;
}
To download raw file Click Here

Output

Constructor Invoked
Constructor Invoked
Destructor Invoked
Destructor Invoked

Program List


Flow Control

IF Statement Examples


Switch Case


Goto Statement


Break and Continue


While Loop


Do While Loop


For Loop


Friend Function in C++


String Examples


Array Examples


Structure Examples


Structure & Pointer Examples


Structure & Functions Examples


Enumeration Examples


Template Examples


Functions


Inheritance Examples

Hierarchical Inheritance


Hybrid Inheritance


Multilevel Inheritance


Multiple Inheritance


Single Level Inheritance


Class and Objects

Constructor Example


Destructor Example


Operator Overloading Example


Operator and Function Example


List of Programs


Pointer Examples


Memory Management Examples


Pointers and Arrays


Virtual Function Examples