protobuf之带有repeated成员实例使用(五)

本文介绍了如何使用ProtocolBuffers(protobuf)在C++中操作.proto文件,包括messagePeopleInfo的定义,序列化和反序列化过程。展示了从.proto文件转换为.h和.cc文件,并在C++代码中实现的详细步骤。
摘要由CSDN通过智能技术生成

1protoc转换为.h和.cc文件

protobuf之实例使用(四)-CSDN博客

2 .proto文件

syntax = "proto2"; 
package contacts;

//定义联系人message
message PeopleInfo 
{
    required string name = 1;    //姓名
    required int32 age = 2;      //年龄
    required string sex = 3;    //姓名
    repeated string subject = 4; //语文、数学、英语
}

3 c++代码块编写

#include <iostream>
#include <fstream>
#include <string>
#include "hello.pb.h"
using namespace std;
 
int main(int argc, char* argv[]) {

     string people_str; 
     contacts::PeopleInfo people; 
     people.set_age(20); 
     people.set_name("zhangsan"); 
     people.set_sex("nan"); 
     people.add_subject("yuwen"); 
     people.add_subject("shuxue"); 
     people.add_subject("yingyu"); 
     // 调⽤序列化⽅法,将序列化后的⼆进制序列存⼊string中
     if (!people.SerializeToString(&people_str))
         cout << "序列化联系⼈失败." << endl; 
     contacts::PeopleInfo peoplere; 
     // 调⽤反序列化⽅法,读取string中存放的⼆进制序列,并反序列化出对象
     if (!peoplere.ParseFromString(people_str))
         cout << "反序列化出联系⼈失败." << endl; 
 
    cout<< peoplere.name()<< " | " <<
    peoplere.age()<< " | " <<peoplere.sex()<<" | " <<
    peoplere.subject(0)<<" | " <<peoplere.subject(1)<<" | " <<peoplere.subject(2)<<endl;
 
  return 0;
}

4.编译执行的序列化结果

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值