2021年6月30日
摘要: package main import ( "fmt" ) type Student struct { id int name string score float64 } func main() { s := []Student{ Student{ 1, "yy", 82, }, Student{ 阅读全文
posted @ 2021-06-30 17:54 Code2020 阅读(2663) 评论(0) 推荐(0) 编辑