const int* p;//常量指針? ?指針指向可以改,指向的數(shù)值不可以改
int const* p;//指針常量? ?指針指向不可以改,指向的數(shù)值可以改
const int const* p;//常量指針常量? ?指向不可以改,數(shù)值不可以改