gpt4 book ai didi

java - 使用 Protocol Buffer 发送已定义对象的列表

转载 作者:行者123 更新时间:2023-12-01 13:34:56 32 4
gpt4 key购买 nike

大家好,我想知道是否有办法发送对象抛出 Protocol Buffer 列表?当我阅读此页时,它说您可以,但您需要自己编写代码。我实际上不明白需要什么,所以如果有人可以提供帮助那就太好了。这是tutorial

最佳答案

假设您定义了一个名为 Foo 的对象,

message Foo {
...
}

如果你想发送 Foo 列表,你可以将其设置为另一条消息中的重复字段,

message FooList {
repeated Foo foos = 1;
}

您可以查看 language guide ,

You specify that message fields are one of the following:

required: a well-formed message must have exactly one of this field.
optional: a well-formed message can have zero or one of this field (but not more than one).
repeated: this field can be repeated any number of times (including zero) in a well-formed message. The order of the repeated values will be preserved.

关于java - 使用 Protocol Buffer 发送已定义对象的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21358334/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com