Tagged Questions
18
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";
}
...
7
votes
6answers
248 views
How is destroying local variables when a block is exited normally called in C++?
C++ automagically calls destructors of all local variables in the block in reverse order regardless of whether the block is exited normally (control falls through) or an exception is thrown.
Looks ...
6
votes
4answers
557 views
Java and C++ on Stack Unwinding issue
As far as I know, in case of an uncaught exception, C++ destroys the local variables immediately, Java releases the references and leaves the rest for the garbage collector.
Is this right? What ...
4
votes
1answer
252 views
Stack unwinding in C++ when using Lua
I recently stumbled into this this C++/Lua error
int function_for_lua( lua_State* L )
{
std::string s("Trouble coming!");
/* ... */
return luaL_error(L,"something went wrong");
}
The error ...
3
votes
3answers
212 views
How to Detect Stack Unwinding in a Destructor
I have a simple C++ object that I create at the start of function F() to ensure two matched functions (OpDo, OpUndo) are called at the start and return of the F(), by using the object's constructor ...
2
votes
4answers
143 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
1answer
126 views
C++ throwing an exception from a destructor
This isn't a question on whether it's safe to throw an exception from a destructor.
http://www.parashift.com/c++-faq-lite/exceptions.html#faq-17.9 states:
"During stack unwinding, all the local ...
2
votes
2answers
125 views
Is the stack unwound when you stop debugging?
Just curious if my destructors are being called.
(Specifically for Visual Studio, when you hit the red stop button)
2
votes
7answers
378 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 ...
2
votes
11answers
814 views
Program crashes when leaving a c++ function…What do you think it is?
I have a c++ code, I use MSC9 to compile it.
It keeps crashing randomly. For example it crashes if it is called from Perl using `` but it does not crash when It is called from command line or from ...
1
vote
3answers
111 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 ...
1
vote
4answers
123 views
Pointer validity after stack unwinding
In C++ does a pointer remains valid after stack unwinding or not ?
Thanks for consideration.
Regards
Ehsan
1
vote
3answers
129 views
throwing a boost::shared_ptr< customException>
is there any pitfall of the following;
if (someCondition)
throw boost::shared_ptr<SomeException>( new SomeException( "foo!" ) );
...
catch( const ...
0
votes
3answers
240 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 ...