摘要:
``` python package main import ( "encoding/json" "errors" "fmt" "reflect" "strconv" "time" ) type User struct { a string b string } type S struct { Us 阅读全文
摘要:
转自: https://www.liaotaoo.cn/200.html python package main import "fmt" type student struct{ id int name string score int } func main(){ //结构体数组存储多为学员信息 阅读全文