찾다

 >  Q&A  >  본문

c++ - extern int a=1为什么在函数内部报错?

#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()里就报错呢?求解释。

PHP中文网PHP中文网2813일 전602

모든 응답(1)나는 대답할 것이다

  • 高洛峰

    高洛峰2017-04-17 15:06:15

    https://stackoverflow.com/que...

    이전에는 눈치채지 못했어요

    회신하다
    0
  • 취소회신하다