Does the constructor create an instance of a class? or is it a member function of a class that is invoked automatically after the creation of the object is compeleted?
same question about the destructor;
does it deallocate the object itself or does it have the responsibility of making the extra clean up for the memory that was allocated for the use of the object?
i mean; are the creation of an object and constructor, deallocating the object itself and destructor related?