C++ Programmer Question:
Explain me what is virtual destructors? Why they are used?

Answer:
Virtual destructors are used for the same purpose as virtual functions. When you remove an object of subclass, which is referenced by a parent class pointer, only destructor of base class will get executed. But if the destructor is defined using virtual keyword, both the destructors [ of parent and sub class ] will get invoked.
Previous Question | Next Question |
Do you know what is an object? | Explain me what is implicit conversion/coercion in c++? |