jump.c
上传用户:bjtelijie
上传日期:2010-01-01
资源大小:87k
文件大小:0k
源码类别:

数学计算

开发平台:

Visual C++

  1. # include <setjmp.h>
  2. # include <stdio.h>
  3. jmp_buf ebuf;    /* 类型在<setjmp.h>中定义 */
  4. void fun(void);
  5. int main()
  6. {
  7. int i;
  8. printf("1 ");
  9. i = setjmp(ebuf);    /* 第一次调用时返回值为零 */
  10. if(i == 0)
  11. {
  12. fun();
  13. printf("This will not be printed.");
  14. }
  15. printf("%dn", i);
  16. return 0;
  17. }
  18. void fun(void)
  19. {
  20. printf("3 ");
  21. longjmp(ebuf, 5);    /* 跳转到执行setjmp()的地方,但此时函数setjmp()返回值为3 */
  22. }