vote up 4 vote down star

How do you specify a method to be a destructor rather than a constructor in C++? This confuses me very much. I can't tell the difference between the two.

flag

2 Answers

vote up 14 vote down check

Here's an example:

MyClass::MyClass()   // Constructor 
MyClass::~MyClass()  // Destructor

Note the "~" in front of the destructor.

link|flag
3  
~ is the not operator (logical), funny C++ designers – CrazyJugglerDrummer Jul 3 at 0:40
3  
Nitpick: ~ is the bitwise not operator, not the logical not operator. – j_random_hacker Jul 3 at 5:01
vote up 6 vote down

If you are planning on deriving from that class, you will need to add virtual in your .h file like so:


class MyClass
{
  MyClass();   // Constructor 
  virtual ~MyClass();  // Destructor
};

this will ensure the destructor for both the base class and the derived class is called when the derived class is destroyed.

link|flag
1  
+1, sound advice. – j_random_hacker Jul 3 at 5:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.