语言规范的“
结构类型”部分对此进行了解释:
字段声明后可以跟一个可选的字符串文字 标签 ,该 标签
成为相应字段声明中所有字段的属性。这些标签通过反射界面可见,
但在其他情况下将被忽略。
// 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"}


