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 ...
class Thing { public: NormalizeName(); NormalizeAge(); private: OurString* iName; OurDate iCreationDate; } class Person : Thing { // stuff specific to people } class House : Thing { // stuff specific ...
Some results have been hidden because they may be inaccessible to you
Show inaccessible results