字节片操作

我正在编写一个程序,该程序应该解析并回复网络数据包,但是我有点恼火,因为我无法return (int)buffer[at];使用字节数组来执行简单的C样式。有没有比以下更好的方法来从byte []作为int32检索4个字节了?


func (packet *Packet) GetInt32(at int) int32 {

    return int32(packet.buffer[at]) << 24 +

        int32(packet.buffer[at+1]) << 16 +

        int32(packet.buffer[at+2]) << 8 +

        int32(packet.buffer[at+3])

}

它可以正常工作,但是我在想是否有更好的方法可以做到这一点。


慕哥9229398
浏览 226回答 1
1回答

隔江千里

package mainimport (&nbsp; &nbsp; "encoding/binary"&nbsp; &nbsp; "fmt"&nbsp; &nbsp; "math")type Packet struct {&nbsp; &nbsp; buffer []byte}func (p *Packet) Int32(i int) int32 {&nbsp; &nbsp; return int32(binary.BigEndian.Uint32(p.buffer[i : i+4]))}func (p *Packet) Float32(i int) float32 {&nbsp; &nbsp; return math.Float32frombits(binary.BigEndian.Uint32(p.buffer[i : i+4]))}func main() {&nbsp; &nbsp; p := &Packet{buffer: []byte{0x01, 0x02, 0x00, 0x00, 0xFF, 0xFF, 0x07}}&nbsp; &nbsp; fmt.Println(p.Int32(2), p.Float32(2))}Output:&nbsp; 65535&nbsp; 9.1834e-41
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go