Creating and Destroying Objects
Saturday, May 17th, 2008In 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.
