Define and use the destructor : Destructor « Class « C++






Define and use the destructor

Define and use the destructor
 

#include <iostream>
using namespace std;

class myclass {
  int a;
public:
  myclass();                   // constructor
  ~myclass();                  // destructor
  void show();
};

myclass::myclass()
{
  cout << "In constructor\n";
  a = 10;
}
myclass::~myclass()
{
  cout << "Destructing...\n";
}

void myclass::show()
{
  cout << a << endl;
}

int main()
{
  myclass ob;

  ob.show();

  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.System will call the destructorSystem will call 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