Posts Tagged ‘constructor’

Creating and Destroying Objects

Saturday, May 17th, 2008

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