变量是否为const变量,没有影响。
/*
* main.cpp
*/
#include <string>
#include <iostream>
using namespace std;
extern int a ;
void show();
int main()
{
cout<<a<<endl;
show();
getchar();
return 0;
}
int a = 10;
/*
* test.cpp
*/
#include <iostream>
extern int a ;
void show()
{
a = 210;
std::cout<<a<<std::endl;
}