std::_Exit
来自 cppreference.com
在头文件 <cstdlib> 中定义 |
||
[[noreturn]] void _Exit( int exit_code ) noexcept; |
(自 C++11 起) | |
导致正常程序终止,但不完全清理资源。
具有自动、线程局部和静态存储期的变量的析构函数不会被调用。传递给 std::at_quick_exit() 或 std::atexit() 的函数不会被调用。打开的资源(如文件)是否关闭取决于实现。
如果 exit_code
为 0 或 EXIT_SUCCESS,则向主机环境返回指示成功终止的实现定义状态。如果 exit_code
为 EXIT_FAILURE,则返回指示不成功终止的实现定义状态。在其他情况下,将返回实现定义的状态值。
内容 |
[编辑] 参数
exit_code | - | 程序的退出状态 |
[编辑] 返回值
(无)
[编辑] 示例
运行此代码
#include <iostream> class Static { public: ~Static() { std::cout << "Static dtor\n"; } }; class Local { public: ~Local() { std::cout << "Local dtor\n"; } }; Static static_variable; // dtor of this object will *not* be called void atexit_handler() { std::cout << "atexit handler\n"; } int main() { Local local_variable; // dtor of this object will *not* be called // handler will *not* be called const int result = std::atexit(atexit_handler); if (result != 0) { std::cerr << "atexit registration failed\n"; return EXIT_FAILURE; } std::cout << "test" << std::endl; // flush from std::endl // needs to be here, otherwise nothing will be printed std::_Exit(EXIT_FAILURE); }
输出
test
[编辑] 参见
导致异常程序终止(不清理) (函数) | |
导致正常程序终止并清理 (函数) | |
C 文档 用于 _Exit
|