摘要: Lua 版本-- 返回0或1 function GetBit(value, index) return value >> index & 1 end -- bitValue取值 0或1,返回存储后数值 function SetBit(value, index, bitValue) local val 阅读全文
posted @ 2020-04-09 11:27 大表哥的笔记 阅读(253) 评论(1) 推荐(0) 编辑