I was thinking today about the try/catch blocks existent in another languages. Googled for a while this but with no result. From what I know, there is not such a thing as try/catch in C. However, is there a way to "simulate" them?
Sure, there is assert and other tricks but nothing like try/catch, that also catch the raised exception. Thank you
|
|
|||
|
|
|
C itself doesn't support exceptions but you can simulate them to a degree with
This website has a nice tutorial on how to simulate exceptions with |
|||
|
|
|
You use goto in C for similar error handling situations. |
|||||||||||||||||||
|
|
Within a single scope, the generic, structured coding pattern for C in the presence of multiple resource allocations and multiple exits uses |
|||||
|
|
A quick google search yields kludgey solutions such as this that use setjmp/longjmp as others have mentioned. Nothing as straightforward and elegant as C++/Java's try/catch. I'm rather partial to Ada's exception handling myself. Check everything with if statements :) |
|||
|
|
|
This can be done with |
|||
|
|
|
Read here for details on using libc calls longjump and setjump to add exceptions in C. |
|||
|
|
|
Perhaps not a major language (unfortunately), but in APL, theres the ⎕EA operation (stand for Execute Alternate). Usage: 'Y' ⎕EA 'X' where X and Y are either code snippets supplied as strings or function names. If X runs into an error, Y (usually error-handling) will be executed instead. |
|||
|
