声明结构体字面量数组

如何声明结构体字面量数组?


去:


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


慕桂英546537
浏览 186回答 1
1回答

江户川乱折腾

你只需要另一对括号。[]aContent{{Type: "Hello", Id: "asdf"}, {Type: "World", Id: "ghij"}}}           ^                                                      ^         here                                                    and here这是数组的一对,数组中的每个结构一个。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go