1.常量指針:指針的指向可以更改,值不能更改
2.指針常量:指針的指向不可以更改,值能更改
例子:?int const?* p =? &a;
3.指針既修飾指針也修飾常量:指針的指向與值均不能更改
例子:const?int?const?* p =? &a;