Struct中Tag的实质是什么?
Struct中Tag的实质是什么?
Tag
type StructField struct {
Name string // 字段名
PkgPath string
Type Type // 字段类型
Tag StructTag // Tag 字符串
Offset uintptr // offset within struct, in bytes
Index []int // index sequence for Type.FieldByIndex
Anonymous bool // is an embedded field
}type StructTag stringReference
Last updated