作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我花了一些时间寻找一些替代方法来处理通用对象,我看到了与我类似的问题,但没有我想象的那么具体?
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;
}
}
最佳答案
正如上面 Marc Gravell 所说 - Protocol Buffers 不处理泛型或继承。
关于object - 如何在 .proto 文件中使用 Protocol Buffer 处理泛型类型对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12305318/
我是一名优秀的程序员,十分优秀!