码迷,mamicode.com
首页 > 其他好文 > 详细

lua 中protobuf repeated 嵌套类 复合类型

时间:2018-03-24 00:48:22      阅读:489      评论:0      收藏:0      [点我收藏+]

标签:tostring   cal   https   local   csdn   基本   mail   col   detail   

PB基础知识科普

syntax = "proto2";
package PB;

message  Item
{
    required string name = 1;
}
message  Role
{
    required string name = 1;  
    optional string email = 2;  
    repeated string t =3;
    repeated Item item1 = 4;
    optional  Item item2 =5;  
}

lua中解析 required  optional  repeated  类型

   require "proto.player_pb"

    local role = player_pb.Role()
    role.name="444"   --require字段

    role.email ="eiail2222222" --optional
    role.t:append("111") --repeated 基本类型

    local tt =role.item1:add() -- repeated 嵌套类 复合类型
    tt.name ="555"

    role.item2.name = "6666" -- optional 嵌套类 复合类型

    local pb_data1 = role:SerializeToString()
    
    local msg = player_pb.Role()
    msg:ParseFromString(pb_data1)

    print(msg.email.."   "..msg.item1[1].name.."  "..msg.item2.name)

lua 中protobuf repeated 嵌套类 复合类型

标签:tostring   cal   https   local   csdn   基本   mail   col   detail   

原文地址:https://www.cnblogs.com/U-tansuo/p/lua_protobuf_repeate.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!