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]>
- C++ Destructor Question holotko
- Re: C++ Destructor Question Joseph Keen
- Re: C++ Destructor Question Glynn Clements
- Re: C++ Destructor Question Joseph Keen
- Re: C++ Destructor Question Glynn Clements
- Re: C++ Destructor Question Jukka Aittokallio
