const int* p;//常量指针 指针指向可以改,指向的数值不可以改
int const* p;//指针常量 指针指向不可以改,指向的数值可以改
const int const* p;//常量指针常量 指向不可以改,数值不可以改