type Player struct { Name string "name" Level int "level" Exp int "exp" } 每个成员后面跟着的字符串的作用?

unnamedfish · · 1289 次点击
结构体标记, 用于反射.
#1