如何在原始语音消息中添加 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
}
我的方法正确吗?