jhunters / jprotobuf

A useful utility library for java programmer using google protobuf
Apache License 2.0
897 stars 283 forks source link

ProtobufIDLProxy.create针对long double float 在设置default值,不加类型符里出错 #172

Open jhunters opened 3 years ago

jhunters commented 3 years ago

采用读pb文件ProtobufIDLProxy.create的方式动态生成protbuf操作对象,遇到optional int64 xxx = 1 [default = 0] 会报类型错误,改成[default = 0L]就可以了 ,这种情况必须得自己转换类型吗