When using VC++ 2008 and 2010, which marker is better to use to indicate a function won't throw exceptions:

  • throw() (C++ standard)
  • __declspec(nothrow) (MS extension)

I read a few older forum discussions where people said that using throw() may actually force the compiler to generate additional code to catch exceptions in case the function does throw (against the marker). Their advice is not to use throw() but use __declspec(nothrow) instead, since the compiler can actually use it for optimization.

I did some searches but I couldn't come up with really useful results. From how I understand, the Boost library advises against using them here. __declspec(nothrow) is non-standard C++, so if MS implements exception specifications, it'll keep working the same way while the throw() behavior may change.

link|improve this question

4  
2  
Exception specification isnt very useful in c++: gotw.ca/publications/mill22.htm – jdv-Jan de Vaan Jan 27 at 21:21
@CodyGray Thanks, I was searching for nothrow and __declspec, I couldn't find much that way. – xxbbcc Jan 27 at 21:37
CodyGray: Please note that all those questions are now dated by a new standard, that significantly changes the allowed optimizations. – Ben Voigt Jan 27 at 21:39
Related: Why add a throw() to your methods?. The comments in this blog post are worth reading as well. – Mr_C64 May 7 at 14:20
feedback

1 Answer

up vote 3 down vote accepted

The standard form is noexcept, but VC++ 2008 and 2010 don't support this.

Personally, I'd use a macro, defined as throw() (or maybe even nothing) until compilers start supporting C++11 noexcept, and then change it.

link|improve this answer
1  
Thanks for the answer - I chose to use __declspec(nothrow) since the VC++ compiler can use that to actually optimize away unneeded exception code. – xxbbcc Jan 29 at 15:21
feedback

Your Answer

 
or
required, but never shown

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