最赞回答 / onemoo
const int const *p 这个声明是错误的,这样两个const都是修饰int的,重复了。选项A中:a是一个const int变量,p是一个普通int指针,不能指向const变量。所以A是错的。
2015-08-30
最新回答 / onemoo
const int const *p 这样声明是错的,这两个const都是修饰int的,重复了。要么写成 const int *p 要么写成 int const *p,这两种写法中const都是修饰int的,所以p是一个指向const int的指针。其实你截图中写的没错,想把p声明称const指针,const需要写在*后面。
2015-07-18