int * const grape_jelly; 指针是只读的。
const int * grape; int const * grape; 指针所指向的对象是只读的。
对象和指针有可能都是只读的:
const int * const grape_jam;
int const * const grape_jam;