protoc-gen-lua中使用 Repeated 标签

protoc-gen-lua中使用 Repeated 标签,第1张

概述比如我这里创建一个 Student.proto --Student.proto message Info { required string name=1; } message Student { required int32 count=1; repeated Info infos=2;

比如我这里创建一个 Student.proto

    --Student.proto         message Info    {    	required string name=1;    }         message Student    {    	required int32 count=1;    	repeated Info infos=2;    }

在C# 里面 Repeated 转出来是对应 List 。
在Lua 里面 Repeated 转出来是对应 table 的。
然后像下面这样使用

编写测试脚本 StudentTest.lua

    --StudentTest.lua         package.path = package.path .. ';./protobuf/?.lua;./protobuf/luascript/?.lua'         require("Student_pb")         local msg=Student_pb.Student()    msg.count=2         local info=Student_pb.Info()    info.name="chenpeng"         table.insert(msg.infos,info)         local info1=Student_pb.Info()    info1.name="chenpeng1"    table.insert(msg.infos,info1)         print("msg.infos count=" .. table.maxn(msg.infos))         print("---------------------------")    for i=1,table.maxn(msg.infos) do    	print(msg.infos[i])    end         print("---------------------------")    for key,value in pairs(msg.infos) do    	print(key)    	print(value.name)    end

附件中附带了继承 protoc-gen-lua 的 jit2.0.3 。直接运行脚本即可。
我这边用的 Sublime Text2
输出如下:

msg.infos count=2
---------------------------
name: chenpeng

name: chenpeng1

---------------------------
1
chenpeng
2
chenpeng1
_Listener
nil
_message_descriptor
Info
[Finished in 0.1s]

测试工程下载:

http://pan.baIDu.com/s/1jGnk4Rk 
总结

以上是内存溢出为你收集整理的protoc-gen-lua中使用 Repeated 标签全部内容,希望文章能够帮你解决protoc-gen-lua中使用 Repeated 标签所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1243632.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存