Why do we have a virtual destructor and not a virtual constructor in c++?

1.7k Views Asked by At

Why can we have a virtual destructor but not virtual constructor?

1

There are 1 best solutions below

0
On BEST ANSWER

The constructor chain can be determined at compile time, because you use new ClassName() always from the most specific class possible.

However you call destructors on possibly parent classes if you use polymorphism, so you can't know at compile time where to start the chain from. You need a virtual function to always call the right one (or you'd end up with potentially uncleaned resources in the most specific classes).