我是 protobuf 的新手,我已经开始考虑以下简单的示例
message Entry {
required int32 id = 1;
}
由 c++ 代码使用
#include <iostream>
#include "example.pb.h"
int main() {
std::string mySerialized;
{
Entry myEntry;
std::cout << "Serialization succesfull "
<< myEntry.SerializeToString(&mySerialized) << std::endl;
std::cout << mySerialized.size() << std::endl;
}
Entry myEntry;
std::cout << "Deserialization successfull "
<< myEntry.ParseFromString(mySerialized) << std::endl;
}
即使需要“id”字段,由于尚未设置,因此序列化缓冲区的大小为0(??)。
当我反序列化消息时发生错误:
[libprotobuf ERROR google/protobuf/message_lite.cc:123] Can't parse message of type "Entry" because it is missing required fields: id
这是正常行为吗?
弗朗切斯科
ps-如果我用值0初始化“id”,行为是不同的
pps-SerializeToString
函数返回true,ParseFromString
返回false