在Go语言规范中,它提到了标签的简要概述:
字段声明后面可以跟着一个可选的字符串字面值标签, 中所有字段的属性 字段声明。标签通过反射可见 接口,否则将被忽略// A struct corresponding to the TimeStamp protocol buffer. // The tag strings define the protocol buffer field numbers. struct { microsec uint64 "field 1" serverIP6 uint64 "field 2" process string "field 3" }
这是一个非常简短的解释,我想知道是否有人可以提供给我这些标签有什么用?