概述 Golang语言的面向对象与c++,py等语言有所不同,是由于Golang不支持继承:与上述支持聚合和继承的面向对象的语言不同,Golang只支持聚合(也叫做组合)和嵌入.聚合和嵌入的区别: type ColoredPoint struct { color.Color //匿名字段(嵌入) x, y int //具名字段(聚合) } warning:(point := ColoredPoint{}) 字段访问: point.x , point.y, point.Color [当访问来自于其