c++中const位置不同代表的含义不同

this = const People *const this
第一个const :常量指针 ,代表值不能被修改;
第二个const :指针常量,代表指针的地址不能修改。

你可能感兴趣的:(c++中const位置不同代表的含义不同)