在protobuf消息中定义数组类型,是通过在字段前面增加repeated关键词实现,标记当前字段是一个数组。
message Msg { // 只要使用repeated标记类型定义,就表示数组类型。 repeated int32 arrays = 1; }
message Msg { repeated string names = 1; }