exit()和atexit()函数

作者:追风剑情 发布于:2020-3-20 15:43 分类:C

示例:为退出程序注册回调函数

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <stdbool.h> //C99特性
  5. #include <string.h>
  6. #include <math.h>
  7. #include <ctype.h>
  8. #include <tgmath.h>
  9.  
  10. //atexit()的注册函数必须返回void,并且参数也为void
  11. void sign_off(void);
  12. void too_bad(void);
  13.  
  14. int main(int argc, char* argv[])
  15. {
  16. int n;
  17.  
  18. /* 注册 sign_off()函数 */
  19. atexit(sign_off);
  20. puts("Enter an integer:");
  21. if (scanf("%d", &n) != 1)
  22. {
  23. puts("That's no integer!");
  24. atexit(too_bad); /* 注册 too_bad()函数 */
  25. exit(EXIT_FAILURE); //当调用exit()时,会调用atexit()注册的函数
  26. //ANSI保证,可以用atexit()注册至少32个函数,调用顺序与注册顺序相反。
  27. }
  28. printf("%d is %s.\n", n, (n % 2 == 0) ? "even" : "odd");
  29. //失败:EXIT_FAILURE
  30. //成功:EXIT_SUCCESS
  31. //exit(EXIT_SUCCESS);
  32.  
  33. system("pause");
  34. return 0; //main()函数退出时会自动调用exit()
  35. }
  36.  
  37. void sign_off(void)
  38. {
  39. puts("Thus terminates another magnificent program from");
  40. puts("SeeSaw Software!");
  41. }
  42.  
  43. void too_bad(void)
  44. {
  45. puts("SeeSaw Software extends its heartfelt condolences");
  46. puts("to you upon the failure of your program.");
  47. }

运行测试
111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号