Constructors
The derived class must have its own constructor
A default constructor for the derived class first invokes the default constructor of the base class and then initializes the derived class’ member variables
The base class constructor is invoked before the constructor of the derived class

Destructors