如何声明struct literal数组?
转到:
type Ping struct {
Content []aContent
}
type aContent struct {
Type string
Id string
Created_at int64
}
func main() {
f := Ping{Content: []aContent{Type: "Hello", Id: "asdf"}}
fmt.Println(f)
}
可以在此处找到代码:http://play.golang.org/p/-SyRw6dDUm
答案 0 :(得分:19)
你只需要另一对牙套。
[]aContent{{Type: "Hello", Id: "asdf"}, {Type: "World", Id: "ghij"}}}
^ ^
here and here
这是数组的一对,一个用于数组中的每个结构..