我得测试代码,proto bytes 类型代码生成 c++类型是 string*,官方文档写的是 string
proto 文件:
message RTKEY
{
optional int64 id1 = 1;
optional int64 id2 = 2;
};
message ControlArea
{
optional RTKEY id = 1;
optional bytes name = 2;
optional RTKEY parent = 3;
optional int32 level = 4;
optional bool remove_fg = 5;
}
自动生成的代码文件:
::mytest::RTKEY* id_;
::std::string* name_;
::mytest::RTKEY* parent_;
::google::protobuf::int32 level_;
bool remove_fg_;
为什么生成的代码里是 string类型呢?因为这个 string 代码出现了问题。。
1
terryching 2021-01-22 07:57:19 +08:00 via Android
string *是内部使用的,你用接口获取和设置都是 string
|