为了账号安全,请及时绑定邮箱和手机立即绑定

声明结构体字面量数组

声明结构体字面量数组

Go
慕桂英546537 2021-08-16 19:48:32
如何声明结构体字面量数组?去: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

这是数组的一对,数组中的每个结构一个。


查看完整回答
反对 回复 2021-08-16
  • 1 回答
  • 0 关注
  • 185 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信