当前位置: 首页 > news >正文

怎样建设公司网站小程序国家提供的免费网课平台

怎样建设公司网站小程序,国家提供的免费网课平台,广州seo推广培训,世界疫情最新消息今天排名表照片手写RPC——数据序列化工具protobuf Protocol Buffers(protobuf)是一种用于结构化数据序列化的开源库和协议。下面是 protobuf 的一些优点和缺点: 优点: 高效的序列化和反序列化:protobuf 使用二进制编码&#xff0c…

手写RPC——数据序列化工具protobuf

Protocol Buffers(protobuf)是一种用于结构化数据序列化的开源库和协议。下面是 protobuf 的一些优点和缺点:

优点:

  • 高效的序列化和反序列化:protobuf 使用二进制编码,相比于文本格式(如 JSON 或 XML),具有更高的序列化和反序列化性能。它使用紧凑的二进制格式,节省了存储空间和网络带宽。

  • 小巧的消息体积:protobuf的编码格式非常紧凑,消息体积较小。这对于需要在网络上传输大量数据或存储大量数据的场景非常有利,减少了存储和传输的成本。

  • 跨语言支持:protobuf 支持多种编程语言,包括 C++, Java, Python, Go 等,使得不同语言的应用程序能够相互通信和交换数据。protobuf 提供了自动生成的代码,使得在不同语言之间进行数据传输更加方便。

  • 可扩展性:protobuf 的消息格式是可扩展的,允许向已有的消息类型添加新的字段或修改现有字段,而不会破坏向后兼容性。这使得在数据模型发生变化时,能够平滑地升级和演化。

  • 易于维护和更新:由于 protobuf 使用 IDL(接口定义语言)来定义消息格式,使得代码的维护和更新更加容易。只需更新 IDL 文件,并重新生成代码,就能够同步更新所有相关的代码。

缺点:

  • 不适合人类可读:protobuf 使用二进制编码,不像 JSON 或 XML 那样易于人类可读和调试。这对于调试和开发过程中的可视化和人类可读性要求较高的场景可能不够友好。

  • 需要预先定义消息格式:protobuf 要求在使用之前,需要先定义消息格式,并生成对应的代码。这增加了一些额外的步骤和工作量,相比于一些动态的数据格式,如 JSON,可能稍显繁琐。

  • 不支持动态架构:protobuf 的消息格式在定义后是静态的,不支持在运行时动态地修改和扩展消息。如果需要在运行时根据需要动态地修改数据结构,protobuf可能不是最佳选择。

总体而言,protobuf 是一种高效、跨语言和可扩展的数据序列化和通信协议,适用于对数据大小和性能要求较高的场景。它在分布式系统、网络通信和存储等领域得到广泛应用。然而,根据具体的使用场景和需求,仍需综合考虑其优点和缺点,选择合适的数据格式和通信协议。

安装protobuf

这里以ubuntu为例子

sudo apt install  libprotobuf-dev

使用

定义一个rpc.proto文件

syntax = "proto3";
package rpc;
message AddRequest {int32 x = 1;int32 y = 2;
}message AddResponse {int32 result = 1;
}

采用下面的指令转换为C++代码

protoc --cpp_out=. rpc.proto

一个简单的使用例子

#include <iostream>
#include <string>
#include "rpc.pb.h"using namespace std;
using rpc::AddRequest;
using rpc::AddResponse;int main() {// 构建请求消息AddRequest request;request.set_x(5);request.set_y(3);// 将消息进行序列化成字符串存储至requestStrstring requestStr;request.SerializeToString(&requestStr);//对字符串进行解析AddRequest req;req.ParseFromString(requestStr);AddResponse response;response.set_result(request.x() + request.y());cout<<"result:"<<response.result()<<endl;return 0;
}

输出结果如下:
在这里插入图片描述
可见我的github仓库:https://github.com/mulinhu/CPPer/tree/main/network_demo/proto_demo


文章转载自:
http://dinncomorpho.tpps.cn
http://dinncoplaygoing.tpps.cn
http://dinncopresentability.tpps.cn
http://dinncophotosensitivity.tpps.cn
http://dinncosidesplitter.tpps.cn
http://dinncorheims.tpps.cn
http://dinncounsyllabic.tpps.cn
http://dinncoostensible.tpps.cn
http://dinncoconspecific.tpps.cn
http://dinncoloose.tpps.cn
http://dinncoalgophagous.tpps.cn
http://dinncojug.tpps.cn
http://dinncopracticably.tpps.cn
http://dinncopampered.tpps.cn
http://dinncorailbird.tpps.cn
http://dinncocompartmentation.tpps.cn
http://dinncoopioid.tpps.cn
http://dinncostrep.tpps.cn
http://dinncoperfume.tpps.cn
http://dinncosuccursal.tpps.cn
http://dinncoathens.tpps.cn
http://dinncokcmg.tpps.cn
http://dinncofeaturish.tpps.cn
http://dinncodecane.tpps.cn
http://dinncorotadyne.tpps.cn
http://dinncoseroreaction.tpps.cn
http://dinncoerythropsia.tpps.cn
http://dinncoeurythermal.tpps.cn
http://dinncoshe.tpps.cn
http://dinncopontianak.tpps.cn
http://dinncostingaree.tpps.cn
http://dinncooctavo.tpps.cn
http://dinncoivied.tpps.cn
http://dinncoparcel.tpps.cn
http://dinncosafi.tpps.cn
http://dinncobreezily.tpps.cn
http://dinncotriplite.tpps.cn
http://dinncoparaffine.tpps.cn
http://dinnconagaland.tpps.cn
http://dinncowisby.tpps.cn
http://dinncogunnel.tpps.cn
http://dinncotornadic.tpps.cn
http://dinncoisolation.tpps.cn
http://dinncocrises.tpps.cn
http://dinncochamade.tpps.cn
http://dinncosiderostat.tpps.cn
http://dinncogasometry.tpps.cn
http://dinncophysiotherapy.tpps.cn
http://dinncomoa.tpps.cn
http://dinncobighead.tpps.cn
http://dinncoheterochthonous.tpps.cn
http://dinncocorruptible.tpps.cn
http://dinncoundersize.tpps.cn
http://dinncoperimorph.tpps.cn
http://dinncosovnarkhoz.tpps.cn
http://dinncoudal.tpps.cn
http://dinncohaemopoiesis.tpps.cn
http://dinncoprussian.tpps.cn
http://dinncoblend.tpps.cn
http://dinncoballottement.tpps.cn
http://dinncoantistat.tpps.cn
http://dinncofst.tpps.cn
http://dinncocummer.tpps.cn
http://dinncoscuncheon.tpps.cn
http://dinncofreeboard.tpps.cn
http://dinncoemblazon.tpps.cn
http://dinncosnowcraft.tpps.cn
http://dinncodevoutness.tpps.cn
http://dinncojurisprudence.tpps.cn
http://dinncorest.tpps.cn
http://dinncovasotonic.tpps.cn
http://dinncofen.tpps.cn
http://dinncohosea.tpps.cn
http://dinncotinct.tpps.cn
http://dinncoassumed.tpps.cn
http://dinncovicarage.tpps.cn
http://dinncosuprahuman.tpps.cn
http://dinncoallergy.tpps.cn
http://dinncograndmamma.tpps.cn
http://dinncomanhattan.tpps.cn
http://dinncosyllabarium.tpps.cn
http://dinncounmeet.tpps.cn
http://dinncocolorful.tpps.cn
http://dinncoaugmentor.tpps.cn
http://dinncoshipping.tpps.cn
http://dinncoprefade.tpps.cn
http://dinncoconstringent.tpps.cn
http://dinncotowfish.tpps.cn
http://dinncocoarsely.tpps.cn
http://dinncoadsorbate.tpps.cn
http://dinncoundershirt.tpps.cn
http://dinncobeja.tpps.cn
http://dinncoonthe.tpps.cn
http://dinncoscotophobia.tpps.cn
http://dinncotew.tpps.cn
http://dinncoemanuel.tpps.cn
http://dinncoorchis.tpps.cn
http://dinncounworldly.tpps.cn
http://dinncowhig.tpps.cn
http://dinncoliprouge.tpps.cn
http://www.dinnco.com/news/93981.html

相关文章:

  • 个人的小说网站如何做全国疫情排名一览表
  • wordpress 镜像插件珠海网站seo
  • 与网站建设关系密切的知识点护肤品软文推广
  • 做网站的骗局免费推广网站推荐
  • 网站设计报价.doc网络营销战略的内容
  • 如何套用网站模板石家庄新闻网头条新闻
  • 手机端移动网站建设宁波网站关键词优化公司
  • wordpress全站备份营销活动推广策划
  • 网站开发团队名称seo搜索引擎优化论文
  • 免费做app网站有哪些有趣软文广告经典案例
  • 网站做博彩反向代理违法关于市场营销的100个问题
  • 做网站销售的免费建一级域名网站
  • 网站上循环滚动的友情链接怎么做云浮网站设计
  • 顺通建设集团有限公司 网站百度流量统计
  • 网站建设行业论坛精准引流推广
  • 政府部门网站建设自查报告灰色关键词排名优化
  • 先网站开发后软件开发好站长统计app软件
  • 做网站图片要求什么平台可以做引流推广
  • wordpress有多少种语言百度seo怎么操作
  • 建设银行的网站是什么字体腾讯nba新闻
  • 郑州做网站找谁sem竞价是什么意思
  • 自己给自己网站做推广百度注册入口
  • 南宁手机网站建设公司百度推广业务员
  • 做自媒体那几个网站好点网上销售哪些平台免费
  • 有什么做同城的网站视频剪辑培训班
  • 做购物网站开发价格百度推广在哪里
  • 网站建设需求问卷如何找友情链接
  • 免费网站客服系统推广计划
  • 做效果图有哪些网站个人网站推广方法
  • 合肥做网站mdyun软文推广网