const 修饰

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

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

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

const int * const grape_jam;

int const * const grape_jam;

 

posted @ 2015-03-03 19:26  soul390  阅读(116)  评论(0编辑  收藏  举报