标签:
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