They are very different kind of languages and the way they handle exceptions might be rather different.. How is exception handling implemented and what are the implementation difference within these languages?

I am asking this question also because I noticed that C++ exception handling seems to be very slow compared to the JavaScript version.

link|improve this question

73% accept rate
1  
C++ — on which platform and which compiler? – KennyTM May 25 '10 at 11:12
I realized only after answering, do you mean by implementation the low-level details such as how Java constructs stacktraces and tracks the path of failure or something more high-level to which my answer is aimed to answer? – Esko May 25 '10 at 11:28
1  
How could C++ exception handling possibly be slower than JavaScript? With what browser, on what platform, running what code, compared to what compiler, on what platform, compiling what code? – DeadMG May 25 '10 at 11:31
@DeadMG C++ exceptions are often several orders of magnitude more costly than normal function returns; in JavaScript (at least before JIT, I'm not so sure now) the difference between the two is a lot less. – Pete Kirkham May 25 '10 at 11:56
3  
How many exceptions do you plan on throwing? They're supposed to be exceptional cases. Forgive me for being blunt, but why would you care how fast it is? – Kristo May 25 '10 at 12:38
show 4 more comments
feedback

3 Answers

I know just the basics of C++ exception handling but as far as I can see, Java has excplicit Object-based hierarchy for exceptions (Throwable, Exception, RuntimeException, Error) while in C++ you can do

try
{
     throw 1337;
}
catch (int i)
{
    // i == 1337
}

This of course reflects to the design of your class structures and general exception handling policies etc.

Other difference introduced by this seemingly minor difference is that C++ really only has what would be known as Runtime Exceptions in Java world, which means that you can throw anything at any time without explicitly writing code to handle the throw pseudo-exception (I'm not willing to call int or any other primitive type an exception, they're just possibly exceptional values).

Lastly, due to their nature when compared to Java's exceptions C++ exceptions don't by default contain anything comparable to Java's stacktraces.

link|improve this answer
It is recommended though in C++ to use classes that derive from std::exception – Nikko May 25 '10 at 12:22
in JavaScript too, you can throw anything (besides the pre-defined Error objects). it’s just a question, how useful that is. – Dormilich May 25 '10 at 14:13
feedback

If you're asking about how it internally generates these exceptions, then it's a pretty complex issue.

One approach (that I think C++ and Java use, I dont know about Javascript), is to maintain a stack of error handlers. When an exception is thrown, the the top entry is popped off the stack and handles the exception appropriately or pops another entry from the stack if it can't handle it (such as it received a NullPointerException when the top handler is a OutOfBoundException).

link|improve this answer
This strategy (a handler stack) is not used by any Java implementation that I've heard of. – Stephen C May 25 '10 at 11:32
feedback
up vote 1 down vote accepted

The most detailed answer I found regarding Exception handling and performance/implementation is on this page: http://lazarenko.me/tips-and-tricks/c-exception-handling-and-performance

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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