程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C語言中如何在main函數開始前執行函數

C語言中如何在main函數開始前執行函數

編輯:關於C語言


  在gcc中,可以使用attribute關鍵字,聲明constructor和destructor,代碼如下:


[cpp]
#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; 

#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中,可以使用如下方法:


[cpp]
#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() 
#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數組中添加多個函數指針。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved