标签:sam 使用 one 文件中 sed har play bsp pre
1:extern用于解决使用非本源文件的全局变量。
例如:在sample1.cpp中
int a,b; /*外部变来那个定义*/ char c; void main() { cout<<a<<endl; cout<<b<<endl; cout<<c<<endl; }
在sample2.cpp源文件中使用sample1.cpp源文件中的全局变量a、b、c,代码如下:
extern int a,b; //外部变量说明 extern char c; //外部变量说明 func(int x,y) { cout<<a<<endl; cout<<b<<endl; cout<<c<<endl; }
标签:sam 使用 one 文件中 sed har play bsp pre
原文地址:http://www.cnblogs.com/lovemi93/p/7520749.html