quick_exit
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <stdlib.h> 中定义
|
||
void quick_exit( int exit_code ); |
(C99 起) | |
导致正常的程序终止发生不完全清洁的资源.
原文:
Causes normal program termination to occur without completely cleaning the resources.
功能通过at_quick_exit被称为其注册以相反的顺序。在调用注册函数,调用_Exit(exit_code)
原文:
Functions passed to at_quick_exit are called in reverse order of their registration. After calling the registered functions, calls _Exit(exit_code)
目录 |
[编辑] 参数
exit_code | - | 退出的程序的状态
|
[编辑] 返回值
(无)
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
引发非正常的程序终止(不清理) (函数) | |
注册一个函数使其在调用exit()时被调用 (函数) | |
(C99) |
注册一个函数使其在调用quick_exit时被调用 (函数) |
C++ documentation for quick_exit
|