C++ 中的at_quick_exit() 函數注冊了一個在程序快速終止時調用的函數,即通過quick_exit() 終止。
調用quick_exit() 函數時,調用at_quick_exit() 函數中注冊的函數。
at_quick_exit()原型
extern int at_quick_exit (void (*func)(void));
該函數在<cstdlib> 頭文件中定義。
參數:
func
:指向要在快速程序終止時調用的函數的指針。
返回:
at_quick_exit() 函數返回:
- 如果函數注冊成功,則為零。
- 如果函數注冊失敗,則非零。
示例 1:at_quick_exit() 函數如何工作?
#include <iostream>
#include <cstdlib>
using namespace std;
void bye()
{
cout << "Program Exiting via quick_exit()";
}
int main()
{
at_quick_exit(bye);
cout << "Inside Main" << endl;
quick_exit(0);
return 0;
}
運行程序時,輸出將是:
Inside Main Program Exiting via quick_exit()
可以注冊多個函數以在快速退出時執行。
如果使用at_quick_exit()注冊了多個函數,則它們按相反的順序執行,即最後注冊的函數首先執行。可以多次注冊相同的函數。
可以使用at_quick_exit() 注冊的函數調用的數量取決於特定的庫實現。但是,最低限製是 32。
示例 2:使用at_quick_exit() 注冊多個函數
#include <iostream>
#include <cstdlib>
using namespace std;
void quick_exit1()
{
cout << "Exit Function 1" << endl;
}
void quick_exit2()
{
cout << "Exit Function 2" << endl;
}
void quick_exit3()
{
cout << "Exit Function 3" << endl;
}
int main()
{
int x1, x2, x3;
/* Executed at last*/
x1 = at_quick_exit(quick_exit1);
x2 = at_quick_exit(quick_exit2);
/* Executed at first */
x3 = at_quick_exit(quick_exit3);
if ((x1 != 0) or (x2 != 0) or (x3 != 0))
{
cout << "Registration Failed";
exit(1);
}
cout << "Registration successful" << endl;
quick_exit(0);
}
運行程序時,輸出將是:
Registration successful Exit Function 3 Exit Function 2 Exit Function 1
如果已注冊的函數在終止時調用時拋出未處理的異常,則會調用 terminate() 函數。
示例 3:at_quick_exit() 函數拋出未處理的異常
#include <iostream>
#include <cstdlib>
using namespace std;
void bye()
{
cout << "Generates Exception";
int a = 5, b = 0;
int x = a/b;
}
int main()
{
int x;
x = at_quick_exit(bye);
if (x != 0)
{
cout << "Registration Failed";
exit(1);
}
cout << "Registration successful" << endl;
quick_exit(0);
}
運行程序時,輸出將是:
Registration successful Generates Exception [The program will terminate with error]
相關用法
- C++ atexit()用法及代碼示例
- C++ atof()用法及代碼示例
- C++ atol()用法及代碼示例
- C++ atoll()用法及代碼示例
- C++ atan()用法及代碼示例
- C++ complex atanh()用法及代碼示例
- C++ atoi()用法及代碼示例
- C++ complex atan()用法及代碼示例
- C++ atan2()用法及代碼示例
- C++ atanh()用法及代碼示例
- C++ any_of()用法及代碼示例
- C++ abort()用法及代碼示例
- C++ complex acosh()用法及代碼示例
- C++ array at()用法及代碼示例
- C++ array::fill()、array::swap()用法及代碼示例
- C++ array::size()用法及代碼示例
- C++ array::rbegin()、array::rend()用法及代碼示例
- C++ complex abs()用法及代碼示例
- C++ array::front()、array::back()用法及代碼示例
- C++ array::front()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ at_quick_exit()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。