當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ at_quick_exit()用法及代碼示例


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() 函數



相關用法


注:本文由純淨天空篩選整理自 at_quick_exit() Function with Example in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。