摘要:
1)不能被修改const bufsize = 512;buffsize在定义时必须初始化;定义处之外无法修改buffsize的值2)只能在定义它的文件中使用file_1.cpp extern const int bufsize =512; file_2.cpp extern const int bufsize; 通过指定const对象为extern,才能在其他文件中被访问。否则只能在file_1.cpp中被访问。3)指向const对象的指针 const double *cptr; // cptr为指向double型的const对象的指针 cptr可以改变,但是指向的类型不可以改变,为co... 阅读全文