有三個檔案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,仍然無濟于事。