1)int const * b;//指针常量,指针指向的变量不能改变值
2)const int * a //指针常量,同上
3) int *const c; //常量指针,指针本身不能改变值,例如数组名就是一个常量指针