static分文件操作
//文件1
int x = 10;
static int y = 100;
//文件2
#include <iostream>
using namespace std;
extern int x;
extern int y;
int main() {
cout << x << y ;
return 0;
}
//undefined reference to `y',系统报错,可以知道static修饰变量y作用域仅在t2.cpp中,而不使用static则在另外一个文件中可以使用,如上面的变量x