可以使用atexit()函數注冊一個函數,代碼如下:
代碼如下:
#include "stdafx.h"
#include <iostream>
using namespace std;
//int _onexit(void (*function)(void)); //這句可以要也可以不要
void f1()
{
cout << "f1()" << endl;
}
void f2()
{
cout << "f2()" << endl;
}
void f3()
{
cout << "f3()" << endl;
}
void f4()
{
cout << "f4()" << endl;
}
int _tmain(int argc, _TCHAR* argv[])
{
atexit(f1);
atexit(f2);
atexit(f3);
atexit(f4);
cout << "main function." << endl;
return 0;
}
輸出結果:
代碼如下:
main
f4()
f3()
f2()
f1()
注意:atexit函數是按照棧的規則來調用注冊的函數,先調用的最後輸出,後調用的最先輸出。
PS:以上是網上大部分人認為的,還有很多人持有不同意見。在此,保留一定的看法!不足之後,還望指正!