Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to handle exceptions in these scenarios:

  1. thrown from constructor before entering main()
  2. thrown from destructor after leaving main()
share|improve this question
So base on all the suggestions, is it safe to conclude that: (1) Even with try-catch block around constructor/destructor, the exception will still be rethrown. (2) If this happens outside main() scope, i.e. initialization of global object, or auto de-initialization of normal object during termination, exception can't be caught. – shiouming Jan 8 '10 at 9:30
Not quite. Ctors can only indicate failure through exceptions, since you cannot have a ctor end without constructing an object; so catching exceptions thrown by a ctor must not violate that. You must catch any potential exception from a dtor, because dtors are called as part of stack unwinding (which happens when exceptions are thrown). If you do not, then you have two exceptions active at the same time, which gets you std::terminate(). – Roger Pate Jan 8 '10 at 9:58
Am reading up this topic from Stroustrup's title. From his explanation, everything sounds like painful design subject to me. – shiouming Jan 8 '10 at 12:10

4 Answers

up vote 16 down vote accepted
  1. You can wrap up your constructor withing a try-catch inside of it.
  2. No, you should never allow exception throwing in a destructor.

The funny less-known feature of how to embed try-catch in a constructor:

object::object( int param )
try
  : optional( initialization )
{
   // ...
}
catch(...)
{
   // ...
}

Yes, this is valid C++. The added benefit here is the fact that the try will catch exceptions thrown by the constructors of the data members of the class, even if they're not mentioned in the ctor initializer or there is no ctor initializer:

struct Throws {
  int answer;
  Throws() : answer(((throw std::runtime_error("whoosh!")), 42)) {}
};

struct Contains {
  Throws baseball;
  Contains() try {} catch (std::exception& e) { std::cerr << e.what() << '\n'; }
};
share|improve this answer
2:30 am and I already learned something today! – Potatoswatter Jan 8 '10 at 8:34
+1 Did not know that was valid C++. Learnt something today. – Tarydon Jan 8 '10 at 8:34
I was surprised when I've learned it too :). It's one of those less known features... – Kornel Kisielewicz Jan 8 '10 at 8:37
1  
Function try-blocks also work for almost any function, including main (where you should practically always have one). – Roger Pate Jan 8 '10 at 9:01
2  
Note that the exception will always be rethrown at end of the constructor (to prevent there being an object with uninitialised members). – James Hopkin Jan 8 '10 at 9:18
show 6 more comments

Yes: don't use dangerous global objects!

share|improve this answer
1  
This is the best answer (after you add "or dangerous singletons"), but I'm out of votes for the next 14 hours! – Roger Pate Jan 8 '10 at 9:04
+1: in name of Roger -- however, I'd like to point out that there are situations that this is impossible, especially if using some wierd API that makes the decision for you. – Kornel Kisielewicz Jan 8 '10 at 9:14
1  
I'm just happy not to get downvoted - LOL – Potatoswatter Jan 8 '10 at 9:17

It might be possible to set an exception handler before construction / destruction of the objects in question, that one should be able to handle those exceptions.

For constructors, there's some weird new syntax that allows exceptions to be caught within the constructor. Not sure how that works, and it's not commonly implemented in many compilers.

For destructors, you have to wrap the content of the destructor in a try { code(); } catch(...) {} block. Which may not always be the desired behavior, depending on what you want to achieve in that destructor.

share|improve this answer
"New" as in over 15 years old? :P It is commonly implemented and is part of the C++ standard. – Roger Pate Jan 8 '10 at 9:03

Short answer: no.

Any global object that throws an exception in its constructor will cause an unhandled exception (that is, terminate be called).

Any class that throws an exception in its destructor is a broken class.

Using the singleton pattern rather than globals will give you more options.

share|improve this answer
I find the opposite: singletons reduce options. Putting application-level objects as local variables in main works beautifully though. – Roger Pate Jan 8 '10 at 10:08
@Roger I don't think we disagree - I only said singletons give you more options than globals. – James Hopkin Jan 8 '10 at 11:19
No, I think singletons reduce options compared to global objects, as at least with globals you can put them all in one TU to control initialization order, and other such things. – Roger Pate Jan 10 '10 at 10:08
1  
Oh, we do disagree then ;-). Singletons are only created if and when needed, and in the rare case of one singleton depending on another, that works automatically, rather than the object instances having to be carefully ordered. Singletons can also be kept private to a particular area of code, rather than needing to be dumped in main.cpp. And wrt to the original question, a variation on the singleton pattern would allow you to handle a singleton not constructing properly (perhaps grey out the UI and display an error, rather than crashing). – James Hopkin Jan 11 '10 at 17:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.