[cpp]
變量的定義:用於為變量分配存儲空間,還可以為變量指定初始值,在一個程序中,變量有且僅有一個定義。
變量的聲明:僅僅給出變量的類型和名字,並不為其分配存儲空間和初<<始化,通常我們在該變量前面加上extern來表明是聲明而不是定義
注意 :一個project中可以包含多出聲明,但只能有一處定義
extern簡介:
比如我們在a.cpp中定義了int result=100;此時我們需要在b.cpp c.cpp等中使用result就可以用extern,而不需在每個cpp中重新定義它了。
例如:
a.cpp
[cpp]
int result=100;
int result=100;
b.cpp:
[cpp]
#include <iostream.h>
int main(){
extern int reslut; //就可以使用a.cpp中的result了
cout<<result<<endl;
return 0;
}
#include <iostream.h>
int main(){
extern int reslut; //就可以使用a.cpp中的result了
cout<<result<<endl;
return 0;
}
其次extern還可以用於函數的聲明,例如:
a.cpp
[cpp]
void show(){
cout<<"hello world!"<<endl;
}
void show(){
cout<<"hello world!"<<endl;
}
b.cpp
#include <iostream.h>
int main(){
extern void show();
show();
return 0;
}
#include <iostream.h>
int main(){
extern void show();
show();
return 0;
}當然b.cpp也可以將上面的變量和函數覆蓋如:
[cpp]
#include <iostream.h>
extern void show();
void show(){
cout<<"haha"<<endl;
}
int main(){
show();
return 0
}
#include <iostream.h>
extern void show();
void show(){
cout<<"haha"<<endl;
}
int main(){
show();
return 0
}還有個"extern C",用這個允許C++調用C中的額函數,我不是很了解C,所以也不是太清楚。。。