如何声明结构体字面量数组?去: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
1 回答
江户川乱折腾
TA贡献1851条经验 获得超5个赞
你只需要另一对括号。
[]aContent{{Type: "Hello", Id: "asdf"}, {Type: "World", Id: "ghij"}}}
^ ^
here and here
这是数组的一对,数组中的每个结构一个。
- 1 回答
- 0 关注
- 185 浏览
添加回答
举报
0/150
提交
取消