码迷,mamicode.com
首页 > 其他好文 > 详细

关于Const用法详解

时间:2016-11-03 18:39:32      阅读:135      评论:0      收藏:0      [点我收藏+]

标签: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用法详解

标签:const   编译   详解   用法   ons   错误   声明   用法详解   nbsp   

原文地址:http://www.cnblogs.com/hehuijie2000/p/6027462.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!