在C/C++編程過程當中,常常會進行變量和函數的聲明和定義,各個模塊間共用同一個全局變量時,此時extern就派上用場了。編程
extern能夠置於變量或者函數前,以標示變量或者函數的定義在別的文件中,提示編譯器遇到此變量和函數時在其餘模塊中尋找其定義,不須要分配內存,直接使用。函數
推薦:在.h中聲明,由於在頭文件定義的話,其餘模塊include此頭文件,就會報重複定義錯誤spa
一、在.h中聲明 extern int g_a; 在.c中定義 int g_a=1; 在兩個其餘文件中引入.h g_a就是惟一的 二、在.h中聲明 int g_a; 在.c中定義 int g_a=1; 在兩個其餘文件中引入.h g_a就是惟一的 三、在.h中定義 int g_a =1; -----報錯 在兩個其餘文件中引入.h g_a就是重複定義了
有 testa.h、test.c、main.c 三個文件code
實驗1:在.h中聲明 extern int g_a; 在.c中定義 int g_a=1;ip
testa.h文件 #ifndef TESTAH #define TESTAH extern int g_a; #endif
testa.c文件 #include "../include/testa.h" int g_a = 1; void setA(int m) { g_a = m; } int getA() { return g_a; }
main.c文件 #include<stdio.h> #include "../include/testa.h" int main() { setA(5); printf("g_a:%d\n",g_a); return 0; }
編譯:gcc testa.c main.c 輸出:g_a:5內存
實驗2:在.h中聲明 int g_a; 在.c中定義 int g_a=1;get
只是將實驗1中的testa.h的extern關鍵字去掉編譯器
編譯:gcc testa.c main.c 輸出:g_a:5it
實驗3: 在.h中定義 int g_a =1;io
testa.h文件 #ifndef TESTAH #define TESTAH int g_a = 1; #endif
testa.c文件 #include "../include/testa.h" void setA(int m) { g_a = m; } int getA() { return g_a; }
main.c文件 #include<stdio.h> #include "../include/testa.h" int main() { setA(5); printf("g_a:%d\n",g_a); return 0; }
編譯報錯:
/tmp/ccja3SvL.o:(.data+0x0): multiple definition of `g_a'
/tmp/cczZlYh9.o:(.data+0x0): first defined here
collect2: error: ld returned 1 exit status
一、變量和函數的定義最好不要在頭文件中定義,由於當此頭文件在其餘文件中#include進去後,編譯器會認爲變量定義了兩次,報錯。
二、變量和函數的聲明放在頭文件中(實驗發現前面有沒有extern關鍵字修飾均可以),這樣能夠讓其餘模塊使用此變量和函數。
在其餘引入此頭文件的.c或者.cpp文件中,也能夠經過加入extern 變量或函數聲明,告訴編譯器是外部引用。也能夠不在聲明,直接使用。