const 修饰后只读const int* p = //常量指针,指针可以被修改,不能修改解引用的值int* const p = //指针常量,指针不能被修改,可以修改解引用的值const int * const p = //常量指针常量