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

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

share|improve this question

7 Answers

up vote 8 down vote accepted

C itself doesn't support exceptions but you can simulate them to a degree with setjmp and longjmp calls.

static jump_buf s_jumpBuffer;

void Example() { 
  if (setjmp(s_jumpBuffer)) {
    // The longjmp was executed and returned control here
    printf("Exception happened\n");
  } else {
    // Normal code execution starts here
    Test();
  }
}

void Test() {
  // Rough equivalent of `throw`
  longjump(s_jumpBuffer, 42);
}

This website has a nice tutorial on how to simulate exceptions with setjmp and longjmp

share|improve this answer
thank you, very clearly explained. – Andrew May 14 '12 at 15:17

You use goto in C for similar error handling situations.
That is the closest equivalent of exceptions you can get in C.

share|improve this answer
8  
no, setjmp/longjmp are better approximations than that – Jens Gustedt May 14 '12 at 15:12
2  
+1 for usage of goto without down-votes! – ericosg May 14 '12 at 15:13
1  
@ericosg, I was really was close to downvoting it because here goto is not really the appropriate answer. (Not that I am against goto where appropriate.) – Jens Gustedt May 14 '12 at 15:15
1  
@JensGustedt This is exactly what goto is currently used for very often and example where it makes sense (setjmp/ljmp is better alternative, but label+goto is typically used more). – AoeAoe Feb 9 at 12:26
@AoeAoe, probably goto is more used for error handling, but so what? The question is not about error handling as such but explicitly about try/catch equivalents. goto is not an equivalent fro try/catch since it is restricted to the same function. – Jens Gustedt Feb 9 at 14:40
show 1 more comment

In C99, you can use setjmp/longjmp for non-local control flow.

Within a single scope, the generic, structured coding pattern for C in the presence of multiple resource allocations and multiple exits uses goto, like in this example. This is similar to how C++ implements destructor calls of automatic objects under the hood, and if you stick to this diligently, it should allow you for a certain degree of cleanness even in complex functions.

share|improve this answer
3  
It was already available in C89. – Seki May 14 '12 at 15:13

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 :)

share|improve this answer
Summarize please... – Jeff Mercado May 14 '12 at 15:11

This can be done with setjmp/longjmp in C. P99 has a quite comfortable toolset for this that also is consistent with the new thread model of C11.

share|improve this answer

Read here for details on using libc calls longjump and setjump to add exceptions in C.

share|improve this answer

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.

share|improve this answer
Hi mappo, welcome to StackOverflow. While interesting, the question was specifically about doing this in C. So this doesn't really answer the question. – luser droog Apr 11 at 6:10

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.