摘要: 学习网络上的文章:http://blog.sina.com.cn/s/blog_7ffcb1410100s0ut.html然后我自己做了一下简单地验证:[root@localhost test]# cat testjmp.c#include<stdio.h>#include<setjmp.h>jmp_buf ebuf;int ftaste();int main(){ int i; fprintf(stderr,"1\n"); i=setjmp(ebuf); if (i==0) { ftaste(); fprintf(stderr,"This 阅读全文
posted @ 2012-10-30 08:48 健哥的数据花园 阅读(204) 评论(0) 推荐(0)