我有一个包含两个字节的文件,按Big Endian顺序,hexdump
给我:
81 50
二进制是1000 0001 0101 0000
。但是,我希望最重要的位是一个标志,所以在golang中我必须加载文件内容,清除最重要的位,然后才读取该值。
所以:
valueBuf := make([]byte, 2)
_, err := f.Read(valueBuf) // now printing valueBuf gives me [129 80] in decimal
value := int16(binary.BigEndian.Uint16(valueBuf[0:2])) // now value is -32432
好的,我试过使用类似的东西:
func clearBit(n int16, pos uint) int16 {
mask := ^(1 << pos)
n &= mask
return n
}
但它显然没有按预期工作。输出值应该是十进制的336
,正常的int,我无法得到它。我该怎么做?
答案 0 :(得分:3)
要n &= mask
工作,n
和mask
必须是匹配类型。所以你应该写
mask := int16(^(1 << pos))
然后,value = clearBit(value, 15)
工作正常。
或者,由于常量是无类型的,因此您可以删除mask
,也可以删除n
的赋值,因为它刚刚返回到以下行,并将clearBit
缩短为
func clearBit(n int16, pos uint) int16 {
return n & ^(1 << pos)
}
答案 1 :(得分:0)
我最近需要类似的东西。在我的情况下,我不得不为一个 byte
/uint8
做这件事。我的所有解决方案都可以轻松更改以使用 int16
。
我发现了以下 4 种翻转最高有效位的方法:
else
的解释。)import (
"math/bits"
)
func bShift(x uint8) uint8 {
l := bits.Len8(x)
if l > 0 {
l -= 1
} else {
return 0
}
return x & ^(1 << l)
}
import (
"math/bits"
)
func bSub(x uint8) uint8 {
l := bits.Len8(x)
if l > 0 {
l -= 1
} else {
return 0
}
return x - (1 << l)
}
func bSwitch(x uint8) uint8 {
switch {
case x >= 128:
return x & 0b1111111
case x >= 64:
return x & 0b111111
case x >= 32:
return x & 0b11111
case x >= 16:
return x & 0b1111
case x >= 8:
return x & 0b111
case x >= 4:
return x & 0b11
case x >= 2:
return x & 0b1
default:
return 0
}
}
Len8
中的 math/bits
类似,使用查找表。 (可以生成。)var tab = [256]uint8{
0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x02, 0x03, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,
0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,
0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,
0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,
0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,
0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,
}
func bTab(x uint8) uint8 {
return tab[x]
}
Go benchmark 给了我以下结果:
goos: darwin
goarch: amd64
BenchmarkShift
BenchmarkShift-8 1000000000 0.298 ns/op
BenchmarkSub
BenchmarkSub-8 1000000000 0.295 ns/op
BenchmarkSwitch
BenchmarkSwitch-8 1000000000 0.298 ns/op
BenchmarkTab
BenchmarkTab-8 1000000000 0.297 ns/op
PASS
只有bShift
没有其他:
goos: darwin
goarch: amd64
BenchmarkShift
BenchmarkShift-8 835758768 1.35 ns/op
如您所见,所有实现几乎都产生了性能。基准源代码:https://gist.github.com/nerg4l/714dc822892e378b0d712927227efa6b