What actually happen when I execute this code?
class MyClass
{
MyClass()
{
//do something
delete this;
}
}
|
What actually happen when I execute this code?
|
|||||||||||||||||
|
|
It turns out that in this particular case the code is legal, but you're ε-away from undefined behavior. The C++ standard defines the notion of the "lifetime" of an object to be the time between which its constructor has finished running and when the destructor starts running. It also explicitly states (in §3.8/5) that
Since an object's lifetime has not started until the constructor finishes, inside the constructor the In addition, if you change the constructor so that you try referencing any of the class's data members after you delete the object, you'll get undefined behavior. If the object was allocated on the stack, you'll get undefined behavior. If the object was static, you'll get undefined behavior. If the object was allocated using |
|||||||||||||
|
|
Assuming your object is never inherited by anything this should work fine. Your constructor runs and then the destructor is immediately called. If anything inherits this object it will break since this constructor will be called before the inheriting constructor. |
|||||||||||||
|