Because classes have complicated internal structures, including data and functions, object initialization and cleanup for classes is much more complicated than it is for simple data structures. Constructors and destructors are special member functions of classes that are used to construct and destroy class objects. Construction may involve memory allocation and initialization for objects. Destruction may involve cleanup and deallocation of memory for objects.
Like other member functions, constructors and destructors are declared within a class declaration. They can be defined inline or external to the class declaration. Constructors can have default arguments. Unlike other member functions, constructors can have member initialization lists. The following restrictions apply to constructors and destructors:
Constructors and destructors obey the same access rules as member
functions. For example, if a constructor is declared with the
keyword protected, only derived classes and friends can use it to
create class objects.
The compiler automatically calls constructors when defining class objects and calls destructors when class objects go out of scope. A constructor does not allocate memory for the class object its this pointer refers to, but may allocate storage for more objects that its class object refers to. If memory allocation is required for objects, constructors can explicitly call the new operator. During cleanup, a destructor may release objects allocated by the corresponding constructor. To release objects, use the delete operator.
Derived classes do not inherit constructors or destructors from their base classes, but they do call the constructor and destructor of base classes. Destructors can be declared with the keyword virtual.
Constructors are also called when local or temporary class objects are created, and destructors are called when local or temporary objects go out of scope.
You can call member functions from constructors or destructors. You can call a virtual function , either directly or indirectly, from a constructor or destructor. In this case, the function called is the one defined in the class or base class containing the constructor (or destructor), but not a function defined in any class derived from the class being constructed. This avoids the possibility of accessing an unconstructed object from a constructor or destructor.
Constructors
Destructors
Virtual Functions
Member Access
new Operator
delete Operator