System will call the destructor : Destructor « Class « C++






System will call the destructor

System will call the destructor
 
#include <iostream>
using namespace std;

class myclass {
public:
  int who;
  myclass(int id);
  ~myclass();
};

myclass::myclass(int id)
{
  cout << "Initializing " << id << endl;
  who = id;
}

myclass::~myclass()
{
  cout << "Destructing " << who << endl;
}

int main()
{
  myclass object1(3);

  cout << "Here.\n";

  myclass object2(4);

  return 0;
}


           
         
  








Related examples in the same category

1.Constructing and Destructing sequence for two base classesConstructing and Destructing sequence for two base classes
2.Derived class call its base constructorDerived class call its base constructor
3.Derived constructor uses no parametersDerived constructor uses no parameters
4.Define and use the destructorDefine and use the destructor
5.Implement a destructorImplement a destructor
6.Using a constructor and destructor.Using a constructor and destructor.
7.Define destrcuctor outside the class definition