你的意思是,指针本身不可修改,指向的内容也不可修改?const int n = 0;const int * const ptr = &n;指针可改,内容不可改const int * ptr指针不可改,内容可改int * const ptr