如何在protobuf消息中添加int数组

时间:2011-09-13 20:41:29

标签: java serialization protocol-buffers

我必须编写一个protobuf消息,它应该有1个整数变量和一个整数数组。

package protobuf;

message myProto {

optional uint32 message_id =1;
optional int update = 2;
//here I have to add a array of integers
//can I write like     optional int[] array =3;
//or should I use      optional repeated array;
//where array is another message with int variable

}

我的方法是否正确?请帮帮我

由于

1 个答案:

答案 0 :(得分:35)

通过“重复”映射数组:

 repeated int32 data = 4;

注意您可能需要sint32 / uint32。另请注意,在所有三种情况下都可以使用“打包数组”,这样更有效;

repeated int32 data = 4 [packed=true];