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

This node falls below the community's minimum standard of quality and will not be displayed.

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.