c++中protobuf的用法是什么

avatar
作者
猴君
阅读量:1

在C++中使用protobuf,首先需要定义一个.proto文件来描述消息的结构,然后使用protobuf的编译器生成对应的C++代码。接着可以在C++程序中使用生成的代码来序列化和反序列化消息。

以下是一个简单的使用protobuf的示例:

  1. 定义一个.proto文件:
syntax = "proto3";  message Person {   string name = 1;   int32 age = 2;   repeated string hobbies = 3; } 
  1. 使用protobuf的编译器生成C++代码:
protoc --cpp_out=. person.proto 
  1. 在C++程序中使用生成的代码:
#include "person.pb.h" #include <fstream>  int main() {   Person person;   person.set_name("Alice");   person.set_age(30);   person.add_hobbies("Reading");   person.add_hobbies("Swimming");    // 序列化消息   std::fstream output("person.pb", std::ios::out | std::ios::binary);   person.SerializeToOstream(&output);    // 反序列化消息   Person new_person;   std::fstream input("person.pb", std::ios::in | std::ios::binary);   new_person.ParseFromIstream(&input);    // 输出消息内容   std::cout << "Name: " << new_person.name() << std::endl;   std::cout << "Age: " << new_person.age() << std::endl;   for (const auto& hobby : new_person.hobbies()) {     std::cout << "Hobby: " << hobby << std::endl;   }    return 0; } 

以上示例演示了如何使用protobuf在C++程序中序列化和反序列化消息,并访问消息的数据成员。在实际应用中,可以根据需要定义更复杂的消息结构,并使用更多protobuf提供的功能来处理消息。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!