微信扫一扫
const type *p/type const *p
常量指针:可以修改指针的指向,不能修改指针指向的值;
type * const p 指针常量:不能修改指针的指向,可以修改指针指向的值;
相关推荐