将(const char*)转换成const char*比如 const char*p= (const char*) str
const char* 其实是一个不可改的char类型的地址。只能是非const 转const ,不能const 转非const.