程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++中聲明與定義~~extern

C++中聲明與定義~~extern

編輯:C++入門知識

[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,所以也不是太清楚。。。

 

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