int *p是指向整型的指针int * const p和int const * p都是指向整型常量指针,前者可以修改指针的值但不可以修改它指向的值,后者相反。int const * const p都不能修改