Protobuf

shooter · · 469 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

编译安装编译器protoc

wget https://github.com/protocolbuffers/protobuf/releases/download/v2.6.1/protobuf-2.6.1.zip
unzip protobuf-2.6.1.zip
cd protobuf-2.5.0

./configure CC=clang CXX=clang++ CXXFLAGS='-std=c++11 -stdlib=libc++ -O3 -g' LDFLAGS='-stdlib=libc++' LIBS="-lc++ -lc++abi"

make -j 4 
sudo make install
protoc --version

安装插件

go get -u github.com/golang/protobuf/protoc-gen-go

定义消息类型

syntax = "proto3";
package main;

// this is a comment
message Student {
  string name = 1;
  bool male = 2;
  repeated int32 scores = 3;
}

在当前目录下执行:

protoc --go_out=. *.proto

ls
# student.pb.go  student.proto

参考:

https://gist.github.com/liushooter/44bd8e2f6f277f2631841787aafe3d9d

https://geektutu.com/post/quick-go-protobuf.html

https://colobu.com/2019/10/03/protobuf-ultimate-tutorial-in-go/

https://www.cnblogs.com/sanshengshui/p/9739521.html


有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:shooter

查看原文:Protobuf

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

469 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传