如何声明结构体字面量数组?
去:
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
江户川乱折腾
相关分类