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

const 修饰

时间:2015-03-03 20:33:00      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

int * const grape_jelly; 指针是只读的。

const int * grape; int const * grape; 指针所指向的对象是只读的。

对象和指针有可能都是只读的:

const int * const grape_jam;

int const * const grape_jam;

 

const 修饰

标签:

原文地址:http://www.cnblogs.com/wanghui390/p/4311795.html

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