学习Golang第17天 – 结构体内嵌模拟类的继承

package mainimport “fmt”// 可飞行的type Flying struct{}func (f *Flying) Fly() {   fmt.