ARTICLE AD BOX
The destructor is not being called because terminate() for the unhandled exception is called before the stack gets unwound.
The specific details of what the C++ spec says is outside of my knowledge, but a debug trace with gdb and g++ seems to bear this out.
According to the draft standard section 15.3 bullet 9:
If no matching handler is found in a program, the function terminate() (except.terminate) is called. Whether or not the stack is unwound before calling terminate() is implementation-defined.
C++ language specification states: The process of calling destructors for automatic objects constructed on the path from a try block to a throw-expression is called “stack unwinding.” Your original code does not contain try block, that is why stack unwinding does not happen.
3 Comments
The selected answer mentioned terminate function which is the ultimate reason. However, I think this answer is closer to the correct answer. If one does not use try, it seems stack unwinding will no happen and that's why the destructor will not be called. My experiment seemed to suggest that the destructor is called when the correct error got caught, before the code block following catch is running.
2019-06-30T04:04:34.763Z+00:00
@SherAndrei If no matching handler is found, the function std::terminate() is called; whether or not the stack is unwound before this call to std::terminate() is implementation-defined. In you example there is no matching catch block: you throw runtime_error, but catch(int).
2024-10-02T12:24:39.41Z+00:00
Sorry I don't have a copy of the standard on me.
I would definitely like a definitive answer to this, so somebody with copy of the standard want to share chapter and verse on whats happening:
From my understanding terminate is only called iff:
The exception handling mechanism cannot find a handler for a thrown exception.The following are more specific cases of this: During stack unwinding, an exception escapes a destructor. An thrown expression, an exception escapes the constructor. An exception escapes the constructor/destructor of a non local static (ie global) An exception escapes a function registered with atexit(). An exception escapes main() Trying to re-throw an exception when no exception is currently propagating. An unexpected exception escapes a function with exception specifiers (via unexpected)
In the second example, the dtor is called when it leaves the try{} block.
In the first example, the dtor is called as the program shuts down after leaving the main() function --- by which time cout may already have been destroyed.
6 Comments
I assumed too that the compiler don't generate the code relative to "a" as it's not referenced but still, it's not the right behavior as the destructor does something that have to be executed.
So, i tried in VS2008/vc9 (+SP1), Debug and Release and ~A is called after the exception is thrown, getting out of f() - that is the right behavior, if i'm right.
Now i just tried with VS2005/vc8 (+SP1) and it's the same behavior.
I used breakpoints to be sure. I just checked with the console and i have the "~A" message too. Maybe you did it wrong somewhere else?
3 Comments
I created text file with first example (without try), opened "Visual Studio 2005 Command Prompt" and compiled file with cl /EHa my.cpp. Run result: This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information.
2008-10-21T15:16:59.89Z+00:00
I'm not familiar with the compilation parameters in command line, but i guess that it's similar to Release mode where if there is no try/catch the code will not get farther than the throw instruction (that's what happens when i try) and the application will just "crash" (that is the wanted behavior)
2008-10-21T15:44:27.277Z+00:00
Explore related questions
See similar questions with these tags.

