(1)const int* p; //指针p指向的内容是常量,不可改变。(2)int* const p; //指针本身是一个常量,不可改变。(3)const int* const p; //指针本身和指向的内容都是常量,都不可以改变。