当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。