关于底层const和顶层const

227 阅读1分钟

只需要看const在*左边还是右边即可;不用管所谓的顶层底层。 int* const p;指针不可变。 const int *p;int const*p;值不可以改变。