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


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

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re^3: DESTROY Function call
by Corion (Patriarch) on Jul 17, 2018 at 20:10 UTC

    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.