首頁 > 問答 > 主體
#include<cmath> #include<iostream> #include<algorithm> using namespace std; int main() { extern int a = 1;//不允许对外部变量的局部声明使用初始值 return 0; }
我知道extern int a这样写是可以的,或者把extern int a = 1放在全局区也是可以的,但是为什么放在函数内部,例如main()里就报错呢?求解释。
extern int a
extern int a = 1
高洛峰2017-04-17 15:06:15
https://stackoverflow.com/que...
以前我也沒注意到