// define structure typetype my_struct struct { a int b rune}// declare slice of my_structvar a []my_struct// declare and initialise struct with one element b := make([]my_struct, 1)// create structure and save itb[0] = my_struct{1, 'a'}// append a new oneb = append(b, my_struct{2, 'b'})您绝对必须阅读https://golang.org/doc/effective_go.html,尤其是关于结构和切片的内容,如果您想了解更多的话。
2 回答
- 2 回答
- 0 关注
- 188 浏览
添加回答
举报
0/150
提交
取消