如何在原始语音消息中添加 int 数组

2022-08-31 20:37:47

我必须编写一个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

数组通过“重复”进行映射:

 repeated int32 data = 4;

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

repeated int32 data = 4 [packed=true];

答案 2