c++ protobuf 可能会遇到的坑

强颜欢笑 提交于 2019-11-28 17:30:28

1.发现存在内存泄露。

程序退出时记得调用:

google::protobuf::ShutdownProtobufLibrary();

2.内存有异常:

  可能是:protobuf 中的嵌套消息的使用临时变量例:

string sn="1111";

string Algo="3333";

request.set_sn(sn);
request.set_algo(Algo);

如果在其它地方使用可能会有异常;需要去new,退去时记得 release_eventcode

 PointProtos::Event *event = mUploadLogInfoData->add_events();
 string* ans = event->mutable_eventcode();
 (*ans)=key;
 string* tvalue = event->mutable_eventcode();//
 (*tvalue)= value ;

  如果是对象一样:
for(int index = 0;index<info.answer_size();index++)
{
    Detail * detail = rsp.add_detail();
    Answer* ans = detail->mutable_answer();
    Answer temp_ans = info.answer(index);
    ans->copyFrom(temp_ans);
}
 

总结:protobuf 中的嵌套消息的使用主要对set_allocated_和mutable_的使用

1 使用set_allocated_,赋值的对象需要new出来,不能用局部的,这里保存的是对象的指针。

2 使用mutable_,赋值时候,可以使用局部变量,因为在调用的时,内部做了new操作。
 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!