Protobuf 安装

1、protobuf 编译工具安装

Protobuf 安装_第1张图片

2、protobuf 的 go 语言插件安装

由于protobuf并没直接支持go语言需要我们手动安装相关插件

Protobuf 安装_第2张图片

protobuf语法

protobuf 通常会把用户定义的结构体类型叫做一个消息,这里我们遵循惯例,统一称为消息。protobuf 消息的定义(或者称为描述)通常都写在一个以 .proto 结尾的文件中。

消息类型

Protobuf 安装_第3张图片
Protobuf 安装_第4张图片
Protobuf 安装_第5张图片
Protobuf 安装_第6张图片
Protobuf 安装_第7张图片

你可能感兴趣的:(Protobuf 安装)