golang結構體匿名字段的妙用

先看一段簡單的代碼:code package main import ( "fmt" ) type A struct { B m int } type B struct { n int } func (b *B) my_print() { fmt.Printf("print B.n=%d\n", b.n) } func main() { a := &A{B{2}, 3} f
相關文章
相關標籤/搜索