标签:const 编译 详解 用法 ons 错误 声明 用法详解 nbsp
const
1. 限定符声明变量只能被读
const int i=5;
int j=0;
...
i=j; //非法,导致编译错误
j=i; //合法
2. 必须初始化
const int i=5; //合法
const int j; //非法,导致编译错误
标签:const 编译 详解 用法 ons 错误 声明 用法详解 nbsp
原文地址:http://www.cnblogs.com/hehuijie2000/p/6027462.html