Creating and Destroying Objects
In most object oriented programs the objects that the program have a limited life span. They get created at the time when they are first needed and are removed once they are no longer required. In this C++ article we look at the two special methods that are defined for each object which handle these two tasks.
Creating and Destroying Objects
Tags: constructor, object oriented




