如何构造带有嵌入式结构的结构文字?
去:
package main
import "fmt"
type Ping struct {
Content struct {
name string
}
}
func main() {
p := Ping{Content{"hello"}}
fmt.Println(p)
}
http://play.golang.org/p/UH4YO6CAFv
如果我以这种方式编写结构,这将起作用:
去:
type Ping struct {
Content
}
type Content struct {
name string
}
http://play.golang.org/p/ERGsO4CMEN
如何在第一个代码版本中使用嵌入式结构版本?
蝴蝶不菲
相关分类