Automatic destruction of object even after calling destructor explicitly

后端 未结 5 1631
野趣味
野趣味 2021-01-23 09:05

The following program :

#include 
using namespace std;

class Test
{
public:
    Test() { cout << \"Constructor is executed\\n\"; }
    ~Te         


        
相关标签:
5条回答
  • 2021-01-23 09:25

    The compiler does not care if you called the destructor explicitly or not. The local object t gets out of scope, that's why it gets destroyed and the destructor is called. It is no good practice to call destructors explicitly. Instead you should write a method like cleanup() that can be called explicitly as well as from within the destructor. If you want to avoid that cleanup can be called twice, add something like this to you class:

    private:
    bool cleanupPerformed;
    
    void cleanup()
    {
       if( !cleanupPerformed )
       {
           // ... do cleanup work here ...
           cleanupPerformed = true;
       }
    }
    
    0 讨论(0)
  • 2021-01-23 09:28

    This is not an "explicit call to constructor":

    Test(); // Explicit call to constructor
    

    It constructs a temporary object, which implicitly calls the constructor, then the temporary immediately goes out of scope, which implicitly calls the destructor. You can't explicitly call a constructor, it gets called implicitly when you construct an object.

    My question is even after explicitly calling destructor in main(), why does the compiler call the destructor implicitly before exiting main()?

    Because the compiler always destroys local variables. Just because you did something dumb (manually destroyed an object that gets destroyed automatically) doesn't change that.

    As a side question, apart from use in delete operator is there any other use of the strategy of calling destructor explicitly?

    It's used when managing the lifetime of objects in raw memory, which is done by containers like std::vector and other utilities like std::optional.

    0 讨论(0)
  • 2021-01-23 09:31

    My question is even after explicitly calling destructor in main(), why does the compiler call the destructor implicitly before exiting main()?

    The destructor will be called when the object gets out of scope, regardless of whether you call the destructor explicitly or not. Don't explicitly call the destructor for objects with automatic storage duration.

    As a side question, apart from use in delete operator is there any other use of the strategy of calling destructor explicitly?

    Yes. When you initialize an object using the placement new expression, you need to call the destructor explicitly. Sample code from the above site:

    char* ptr = new char[sizeof(T)]; // allocate memory
    T* tptr = new(ptr) T;            // construct in allocated storage ("place")
    tptr->~T();                      // destruct
    delete[] ptr;                    // deallocate memory
    
    0 讨论(0)
  • 2021-01-23 09:36

    You've introduced undefined behavior.

    Per the standard:

    § 12.4 Destructors

    (11) A destructor is invoked implicitly

    (11.3) — for a constructed object with automatic storage duration (3.7.3) when the block in which an object is created exits (6.7),

    and

    15 Once a destructor is invoked for an object, the object no longer exists; the behavior is undefined if the destructor is invoked for an object whose lifetime has ended (3.8). [ Example: if the destructor for an automatic object is explicitly invoked, and the block is subsequently left in a manner that would ordinarily invoke implicit destruction of the object, the behavior is undefined. —end example ]

    You explicitly call the destructor or by calling t.~Test(), it is then implicitly invoked when the object leaves scope. This is undefined.

    The standard provides this note as well:

    14 [ Note: explicit calls of destructors are rarely needed. One use of such calls is for objects placed at specific addresses using a placement new-expression. Such use of explicit placement and destruction of objects can be necessary to cope with dedicated hardware resources and for writing memory management facilities.

    0 讨论(0)
  • 2021-01-23 09:39

    the scope of t is the main function. Its created on the stack and will be destroyed at the end of the function.

    That's how its supposed to work and when you call the destructor on it early, you don't change that.

    You don't need to call the destructor and in this case doing so leads to it being called twice.

    if you'd used

    Test* t = new Test();
    

    the destructor would not have been automatically called at the end of main.

    0 讨论(0)
提交回复
热议问题