Tagged Questions
19
votes
5answers
3k views
Why destructor is not called on exception?
I expected A::~A() to be called in this program, but it isn't:
#include <iostream>
struct A {
~A() { std::cout << "~A()" << std::endl; }
};
void f() {
A a;
throw "spam";
}
...
9
votes
4answers
243 views
Scope unwinding in PHP class constructors
I'm learning PHP classes and exceptions, and, coming from a C++ background, the following strikes me as odd:
When the constructor of a derived class throws an exception, it appears that the ...
4
votes
1answer
67 views
Is there any method that causes whole stack frame unwinding in C++? (except using exception)
I've been writing a continuation - in specific, coroutine - library. It's similar to std::thread (except that it's cooperative) - each execution contexts are represented in continuation object.
The ...
2
votes
4answers
144 views
Why aren't destructors called when exception isn't caught within main?
I have the following code:
#include <iostream>
#include <vector>
#include <tr1/memory>
struct FooError {};
struct Foo
{
~Foo() { std::cerr << "~Foo() executed" << ...
2
votes
7answers
393 views
Exception handling
I heard people say exception handling is a bit expensive because of the stack unwinding.
I don't get something, the stack unwinding happens whether I throw an exception and whether I use "return". So ...
1
vote
3answers
119 views
How can I detect whether an exception is active during destructor?
In C++, how can I detect in the body of my destructor whether the stack is being unwound due to an exception being thrown? Once detected, can I get a reference to the active exception?
I ask because ...
0
votes
3answers
247 views
RAII and Stack unwinding
TIL that my notions of the 'inter-twining' (for the lack of a better word) of RAII & stack-unwinding are/were quite(if not completely) wrong. My understanding was that using RAII, guarded against ...