最赞回答 / 诗情美如画
你要知道常量指针和指针常量的关系 比如: const int * p 这是常量指针 const 只是为了 将*p给绑住不让别人改它而 指针常量: int *const p是为了将p给绑住 不让别人把地址改了保证地址的安全性 const int *const p 则完全被绑住了不能修改
2016-03-20