Coordinate * const p=&coor;
// 创建常指针p
Coordinate * const p=&coor;
p->printInfo();
index.cpp: In function 'int main()': index.cpp:29:24: error: invalid conversion from 'const Coordinate*' to 'Coordinate*' [-fpermissive] Coordinate * const p=&coor;
为什么?