I know when and why a C++ class should have a virtual destructor. My question is, if I'm deriving from a base class with a virtual destructor, does the derived class need to specify its destructor as ...
Hi,<BR><BR>I have a base class whose destructor is pure virtual, so the class is abstract.<BR><BR>I have a derived class (subtype) whose multi-argument constructor wants to call the base class's zero ...