如何构造带有嵌入式结构的结构文字?去:package mainimport "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如何在第一个代码版本中使用嵌入式结构版本?
- 2 回答
- 0 关注
- 202 浏览
添加回答
举报
0/150
提交
取消