對全域性變數的一點發現
阿新 • • 發佈:2018-12-19
有三個檔案ex1.c ex1.h main.c想來測試一下多檔案共同編譯時,他們的"共同變數"究竟是有著怎樣的關係
ex1.c:
#include "ex1.h"
int a=0;
void numadd()
{
a++;
b++;
}
ex1.h
#ifndef EX1_HH
#define EX1_HH
#include <stdio.h>
void numadd();
#endif
main.c
#include "ex1.h"
int b=0;
void main()
{
numadd();
printf("a=%d\nb=%d\n",a,b);
}
Makefile
$(Target)=result.out
$(Object)=ex1.o main.o
$(Target):$(Object)
gcc $(Object) -o $(Target)
這裡用makefile純屬練手,實則沒必要
思路是在ex1.c的函式外定義一個全域性變數a,在main.c的函式外定義一個全域性變數b
在ex1.c中寫一個讓a,b自加的函式,如果照著上面的函式執行的話就會出錯,原因是沒有在main.c中檢測到a,同時在ex1.c中也沒有檢測到b,如果在ex1.h中定義一個extern int a;可以解決a的問題,同樣在ex1.c中extern int b可以解決這個問題。
如果將a,b定義在函式裡面,那麼即便再使用extern,仍然無濟於事。