C說話中怎樣在main函數開端前履行函數。本站提示廣大學習愛好者:(C說話中怎樣在main函數開端前履行函數)文章只能為提供參考,不一定能成為您想要的結果。以下是C說話中怎樣在main函數開端前履行函數正文
在gcc中,可使用attribute症結字,聲明constructor和destructor,代碼以下:
#include <stdio.h>
__attribute((constructor)) void before_main()
{
printf("%s/n",__FUNCTION__);
}
__attribute((destructor)) void after_main()
{
printf("%s/n",__FUNCTION__);
}
int main( int argc, char ** argv )
{
printf("%s/n",__FUNCTION__);
return 0;
}
vc不支撐attribute症結字,在vc中,可使用以下辦法:
#include <stdio.h>
int
main( int argc, char ** argv )
{
printf("%s/n",__FUNCTION__);
return 0;
}
int before_main()
{
printf("%s/n",__FUNCTION__);
return 0;
}
int after_main()
{
printf("%s/n",__FUNCTION__);
return 0;
}
typedef int func();
#pragma data_seg(".CRT$XIU")
static func * before[] = { before_main };
#pragma data_seg(".CRT$XPU")
static func * after[] = { after_main };
#pragma data_seg()
編譯履行,上述兩段代碼的成果均為:
before_main
main
after_main
可以在main前後挪用多個函數,在gcc下應用attribute聲明多個constructor、destructor,vc下在before、after數組中添加多個函數指針。