有一个类
type MyPoint struct {
X,
Y float64
}
以下2种声明方式有什么区别:
var Path []MyPoint
type Path2 []MyPoint
一只甜甜圈