//file1.cpp #include<iostream.h> void fn(); extern int n; void main() { n=20; cout << n << endl; fn(); } //file2.cpp #include<iostream.h> static int n; //定义静态全局变量,初始化为0; void fn() { n++; cout << n << endl; } |
文件分别编译能通过,但连接时file1.cpp 中的变量n找不到定义,产生连接错误。
D、文件作用域下声明的const的常量默认为static存储类型。