std::at_quick_exit
来自 cppreference.com
定义在头文件 <cstdlib> 中 |
||
int at_quick_exit( /*atexit-handler*/* func ) noexcept; int at_quick_exit( /*c-atexit-handler*/* func ) noexcept; |
(1) | (自 C++11 起) |
extern "C++" using /*atexit-handler*/ = void(); extern "C" using /*c-atexit-handler*/ = void(); |
(2) | (仅供说明*) |
注册由 func
指向的函数,以便在快速程序终止时调用(通过 std::quick_exit)。
从多个线程调用该函数不会导致数据竞争。保证实现至少支持注册 32 个函数。确切的限制是实现定义的。
注册的函数不会在 正常程序终止 时被调用。如果需要在这种情况下调用函数,则必须使用 std::atexit。
内容 |
[编辑] 参数
func | - | 指向在快速程序终止时要调用的函数的指针 |
[编辑] 返回值
0 如果注册成功,则为非零值。
[编辑] 注释
这两个重载是不同的,因为参数 func
的类型不同(语言链接 是其类型的一部分)。
[编辑] 示例
运行此代码
#include <cstdlib> #include <iostream> void f1() { std::cout << "pushed first" << std::endl; // flush is intentional } extern "C" void f2() { std::cout << "pushed second\n"; } int main() { auto f3 = [] { std::cout << "pushed third\n"; }; std::at_quick_exit(f1); std::at_quick_exit(f2); std::at_quick_exit(f3); std::quick_exit(0); }
输出
pushed third pushed second pushed first
[编辑] 另请参阅
导致异常程序终止(不进行清理) (函数) | |
导致正常程序终止并进行清理 (函数) | |
注册在 std::exit() 调用时要调用的函数 (函数) | |
(C++11) |
导致快速程序终止,不完全清理 (函数) |
C 文档 for at_quick_exit
|