标签: ruby byte nibble
从Ruby中的一个字节获取两个半字节(作为整数)的最简单方法是什么?
答案 0 :(得分:4)
如果“byte”是0到255之间的数字:
n1, n2 = (byte & 0xf0) >> 4, byte & 0x0f