const char* pc=str; //指向常量,指向地址可以改,指向的目标不能改
char *const pc=str; //常量指针,指向地址不能改,指向的目标可以改
const char *const pc=str; //都不能改