摘要:
package main import ( "fmt" "reflect" ) type Test struct { Id int `json:"user_id"` Name string "this is name" } func main() { t := Test{Id: 1, Name: "xiaochuan"} r := reflect.TypeOf(t) fmt.Printl... 阅读全文
posted @ 2019-05-22 17:47
ma_fighting
阅读(531)
评论(0)
推荐(0)