const string*:指向const string的指针,即指向常量的指针,指针指向的区域不可读写 string const*: C++无const* 运算符,故无此描述方法 string* const: 指向string的常指针,指针指向的区域在初始化后无法更改