Protected vs Private Destructor

Viewed 43915

Is there any difference between a protected and a private destructor in C++? If a base classes destructor is private, I imagine that it is still called when deleting the derived class object.

4 Answers
Related