http://qs321.pair.com?node_id=1218693


in reply to Re^2: DESTROY Function call
in thread DESTROY Function call

No. Objects in C++ are not reference counted in general.

The C++ FAQ on Destructors discusses many of the topics also touched upon here.

Objects as a local variable will have their destructor called on the closing bracket, and there cannot be a reference to them in valid code. So reference counting makes no sense in that context.

Objects created with new need to be explicitly disposed of by using delete. No reference counting is in play there either.