gpt4 book ai didi

object - 如何在 .proto 文件中使用 Protocol Buffer 处理泛型类型对象?

转载 作者:行者123 更新时间:2023-12-04 09:41:27 29 4
gpt4 key购买 nike

我花了一些时间寻找一些替代方法来处理通用对象,我看到了与我类似的问题,但没有我想象的那么具体?
Protocol Buffer 有多种我可以使用的标量类型,但它们大多是原始的。
我希望我的消息是灵活的,并且能够有一个字段是某种列表。

假设我的 .proto 文件如下所示:

   message SomeMessage
{
string datetime = 1;
message inputData // This would be a list
{
repeated Object object = 1;
}
message Object
{
? // this need to be of a generic type - This is my question
// My work around - Using extentions with some Object
//List all primitive scalar types as optional and create an extension 100 to max;
}
message someObject //some random entity - for example, employee/company etc.
{
optional string name = 1; optional int32 id = 2;
}
extend Object
{
optional someObject obj = 101;
}
}

这会很好,并且可以工作,并且我有一个列表,其中对象可以是任何原始类型,也可以是 List < someObject >。
但是 - 这里的问题是,每当我需要处理一种新类型的对象时,我都需要编辑我的 .proto 文件,重新编译 C# 和 java(我需要它的语言)......

如果 Protocol Buffer 无法处理通用对象类型,是否还有其他替代方法可以?
非常感谢有关此事的任何帮助。

最佳答案

正如上面 Marc Gravell 所说 - Protocol Buffers 不处理泛型或继承。

关于object - 如何在 .proto 文件中使用 Protocol Buffer 处理泛型类型对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12305318/

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