Go中的标签有什么用途?
字段声明后面可以跟着一个可选的String文字标记,它将成为相应字段声明中所有字段的属性。标记通过反射接口显示,但在其他方面则被忽略。 // 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"}