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