C++ at_quick_exit() 函數
at_quick_exit() 函數是 cstdlib 頭文件的庫函數。用於設置快速退出時應執行的函數。有時我們需要編寫這樣的代碼(比如釋放全局變量占用的內存,關閉文件對象等),在快速退出時應該執行,可以為它編寫任何用戶定義的,並且可以設置為使用 at_quick_exit() 函數的快速退出函數。
at_quick_exit() 函數的語法:
C++11:
extern "C" int at_quick_exit (void (*func)(void)) noexcept; extern "C++" int at_quick_exit (void (*func)(void)) noexcept;
參數:
func
– 表示在快速退出時要調用的函數。
返回值:
這個函數的返回類型是int
, 函數注冊成功則返回0;非零,否則。
例:
// defining the function void function_name(void){ // function code } // setting the function at_quick_exit(function_name);
C++代碼演示at_quick_exit()函數的例子
// C++ code to demonstrate the example of
// at_quick_exit() function
#include <iostream>
#include <cstdlib>
using namespace std;
void myfunc(void)
{
cout << "Bye, Bye..." << endl;
}
// main() section
int main()
{
//setting the functions
at_quick_exit(myfunc);
cout << "Hi, friends..." << endl;
cout << "Input first number:";
int a;
cin >> a;
cout << "Input second number:";
int b;
cin >> b;
cout << a << "+" << b << " = " << a + b << endl;
//quick exit
quick_exit(EXIT_SUCCESS);
cout << "End of the main()..." << endl;
return 0;
}
輸出
Hi, friends... Input first number:10 Input second number:20 10+20 = 30 Bye, Bye...
參考:C++ at_quick_exit() 函數
相關用法
- C++ atexit()用法及代碼示例
- C++ atof()用法及代碼示例
- C++ atol()用法及代碼示例
- C++ complex atanh()用法及代碼示例
- C++ atoll()用法及代碼示例
- C++ atan()用法及代碼示例
- C++ atoi()用法及代碼示例
- C++ complex atan()用法及代碼示例
- C++ atanh()用法及代碼示例
- C++ atan2()用法及代碼示例
- C++ any_of()用法及代碼示例
- C++ acos()用法及代碼示例
- C++ abort()用法及代碼示例
- C++ complex acosh()用法及代碼示例
- C++ array at()用法及代碼示例
- C++ array::fill()、array::swap()用法及代碼示例
- C++ array::operator[]用法及代碼示例
- C++ array::size()用法及代碼示例
- C++ array::rbegin()、array::rend()用法及代碼示例
- C++ complex abs()用法及代碼示例
注:本文由純淨天空篩選整理自 at_quick_exit() Function with Example in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。