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.
|
|
Here's an example:
Note the "~" in front of the destructor. |
||||||||
|
|
|
If you are planning on deriving from that class, you will need to add virtual in your .h file like so:
this will ensure the destructor for both the base class and the derived class is called when the derived class is destroyed. |
||||
|
