Archive for July 6th, 2012

Friday, July 6th, 2012

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 [...]