cloudwu / sproto

Yet another protocol library like google protocol buffers , but simple and fast.
MIT License
942 stars 253 forks source link

完善对整数的判定, 只要提供的数据有有效的 integer representation 就可以接受 #37

Closed xebecnan closed 9 years ago

tangyiyang commented 9 years ago

大概看了下,意思就是对 字符串 "52" 也可以正确的转换成number是这个意思么。

cloudwu commented 9 years ago

其实主要作用是可以接受 52.0 这种.

tangyiyang commented 9 years ago

那52.15 这种会怎么处理呢?转成字符串发给客户端么。。 还是定义成定点数,52.15 * 1024。

xebecnan commented 9 years ago

lua 5.3 里 52.15 会报错,其实就跟 string.format 的 %d 的处理一样