我能用吗
message Foo {
map<string, string> foo = 1;
}
代替
message Foo {
repeated KeyValuePair foo = 1;
}
message KeyValuePair {
string key = 1;
string value = 2;
}
?
第一个来源在 proto3 中,第二个来源在 proto2 中。
我能用吗
message Foo {
map<string, string> foo = 1;
}
代替
message Foo {
repeated KeyValuePair foo = 1;
}
message KeyValuePair {
string key = 1;
string value = 2;
}
?
第一个来源在 proto3 中,第二个来源在 proto2 中。