命名空间
变体
操作

std::_Exit

来自 cppreference.com
< cpp‎ | utility‎ | program
 
 
实用工具库
语言支持
类型支持 (基本类型,RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用工具
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三元比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
 
在头文件 <cstdlib> 中定义
[[noreturn]] void _Exit( int exit_code ) noexcept;
(自 C++11 起)

导致正常程序终止,但不完全清理资源。

具有自动、线程局部和静态存储期的变量的析构函数不会被调用。传递给 std::at_quick_exit()std::atexit() 的函数不会被调用。打开的资源(如文件)是否关闭取决于实现。

如果 exit_code0EXIT_SUCCESS,则向主机环境返回指示成功终止的实现定义状态。如果 exit_codeEXIT_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