各位好,今天在别人博客上看到个问题,我想了一下没想出来。求教: test.cpp:
int foo = 555;
const int array_test[5] = {1,2,3,4,5};
main.cpp:
#include <iostream>
extern int a;
extern const int array_test[5];
int main(void)
{
std::cout<<a<<std::endl;
std::cout<<array_test[0]<<std::endl;
}
这里这样写a
可以访问,但array_test
显示未定义。需要在 test.cpp 中的const int array_test[5] = {1,2,3,4,5};
前加上extern
才可以。那么这是为什么呢?a
不需要加extern
,array_test
需要加,而且将array_test
定义里的const
去掉,那么不加extern
也是可以的。
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.