问题
Hi I'd like to read good tutorials on setjmp/longjmp in C. It'd be better if there're examples which are real rather than artificial.
Thanks.
回答1:
It's not really a tutorial as such, but the libpng documentation describes how the library uses setjmp/longjmp to do error handling.
回答2:
The book "C interfaces and implementation" explains the concept well and implements a usable "exception" simulation in C using these constructs. The code for it (chapter 4) is freely available online here.
Edit: also see this SO thread
回答3:
Then you should read Advanced Programming in the UNIX(R) Environment (2nd Edition) Here's the sample you're looking for http://my.safaribooksonline.com/0201433079/ch10lev1sec15 (just a preview)
来源:https://stackoverflow.com/questions/1733649/excellent-setjmp-longjmp-tutorials