摘要: 【第6章-方法】type Point struct{X,Y float64} // 普通函数func Distance(p,q Point) float64{ return math.Hypot(q.X - p,X, q.Y-p.Y)} // Point 类型方法func (p Point) Dis 阅读全文
posted @ 2020-11-10 12:13 雪域蓝心 阅读(161) 评论(0) 推荐(0) 编辑