const Coordinate *p = &coor[0];
const Coordinate *p = coor;
有什么区别,实际使用中会有什么差异
没有区别。
把数组名用作右值时,会自动转换为指向首元素的指针。