Other Class Method Considerations
There are several other points to keep in mind as you define a class. The following sections list some of them.
Constructor Considerations
Constructors are different from other class methods in that they create new objects, whereas other methods are invoked by existing objects. This is one reason constructors aren’t inherited. Inheritance means a derived object can use a base-class method, but, in the case of constructors, the object doesn’t exist until after the constructor has done its work.
Destructor Considerations
You need to remember to define an explicit destructor that deletes any memory allocated by new
in the class constructors and takes care of any other special bookkeeping that destroying a class ...
Get C++ Primer Plus now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.