Go語言以匿名組合的方式實現繼承

type Base struct { FirstName, LastName string Age float32 } func (base *Base) HasFeet() { fmt.Println(base.FirstName + base.LastName + "has feet! Base") } func (base *Base) Flying() {
相關文章
相關標籤/搜索