=========================================================
2-4-1 定义const对象
const int bufSize = 512;
定义后不能修改,定义时必须初始化。可以用非常量来初始化,比如函数返回值。
2-4-2 const 对象默认为文件局部变量
(在全局作用域声明的const)不能被其他文件访问。
共享方法:extern//file1.cc extern const int bufSize = fcn(); //file2.cc extern const int bufSize; // use it
非const变量默认为extern,访问方法://file1.cc int bufSize = fcn(); //file2.cc extern int bufSize; // use it