标签: c const
我知道这两者之间的区别:
不允许修改数据的指针 像这样const int *pnPtr = &nValue;
const int *pnPtr = &nValue;
指针必须始终指向相同的地址,声明为 所以int *const pnPtr = &nValue;
int *const pnPtr = &nValue;
但是这个:
const int *t
int const * t