对于我们正在使用Google Protocol Buffers的项目。我对此非常陌生,所以我想通过一些教程。但每个教程都说:“制作.proto文件”,但我不知道如何实际做到这一点......可以用nano完成吗?文本编辑器?日食? ...?
答案 0 :(得分:0)
使用任何文本编辑器,如vi,nano,gedit,notepad,notepad ++,...
示例proto
message Car {
required string model = 1;
required int capacity = 2;
optional int doors = 3;
}
将名为Car.proto
的文件保存为示例