码迷,mamicode.com
首页 > 其他好文 > 详细

setjmp

时间:2019-07-17 23:08:44      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:sed   and   hand   setjmp   code   break   init   word   number   

#include <setjmp.h>
#include <stdio.h>

jmp_buf j;

void raise_exception(void)
{
printf("exception raised\n");
longjmp(j, 3); /* jump to exception handler case 3 */
printf("this line should never appear\n");
}

int main(void)
{
switch (setjmp(j)) {
case 0:
printf("‘‘setjmp‘‘ is initializing ‘‘j‘‘\n");
raise_exception();
printf("this line should never appear\n");
case 1:
printf("Case 1\n");break;
case 2:
printf("Case 2\n");break;
case 3:
printf("Case 3\n");break;
default:
break;
}
return 0;
}

setjmp

标签:sed   and   hand   setjmp   code   break   init   word   number   

原文地址:https://www.cnblogs.com/flintlovesam/p/11204276.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!