Joseph Keen wrote:

> In C++ you must always specifically call the destructor before the
> variable goes out of scope.

Wrong. The destructor will be called automatically when the variable
ceases to exist (i.e. upon leaving the enclosing function for
automatic variables, upon delete for dynamic variables, and upon
program termination for static variables).

-- 
Glynn Clements <[EMAIL PROTECTED]>

Reply via email to