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

int * const 和 const int *

时间:2014-07-12 09:04:56      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:re   app   c   value   print   val   

It‘s not the same. The const modifier can be applied to the value, or the pointer to the value.

int * const

A constant pointer (not modifiable) to an integer (its value can be modified)

const int *

A modifiable pointer to a constant integer (its value can‘t be modified)

So you can imagine:

const int * const;

int * const 和 const int *,布布扣,bubuko.com

int * const 和 const int *

标签:re   app   c   value   print   val   

原文地址:http://www.cnblogs.com/ibing/p/3835146.html

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