dongxuandong2045 2019-02-21 14:21
浏览 394
已采纳

Golang:从一个字节解析位值

I need to parse a network packet which consists of two bytes: first one consists of 8 bits that set certain flags depending on their order (for instance) and the second one is uint8 (which is simple)

  • 1 - online
  • 0 - not active
  • 1 - isPretty
  • 1 - isHandsome
  • 0 - bald
  • 0 - deaf
  • 0 - mute
  • 0 - blind

How do I parse it from a byte primitive?

  • 写回答

1条回答 默认 最新

  • doupian9490 2019-02-21 14:34
    关注

    Some useful Go standard library packages for dealing with binary:

    For extracting single bits from a byte, you ought to use bitwise operators - |, & and >>.

    For example:

    package main
    
    import (
        "fmt"
    )
    
    func main() {
        v := byte(0xB2)
        if (v >> 4) & 1 == 1 {
            fmt.Println("bit 4 (counting from 0) is set")
        }
    }
    

    This checks bit 4 (with bit 0 being the lowest bit in the byte) by shifting the byte value 4 positions to the right and AND-ing with 1. You can check the other bits in your flag value similarly. Feel free to write a function that replaces the 4 in the sample above with an argument N to check bit number N.

    You can find more examples in other SO answers like this one or the ones @icza linked to in a comment.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何在3D高斯飞溅的渲染的场景中获得一个可控的旋转物体
  • ¥88 实在没有想法,需要个思路
  • ¥15 MATLAB报错输入参数太多
  • ¥15 python中合并修改日期相同的CSV文件并按照修改日期的名字命名文件
  • ¥15 有赏,i卡绘世画不出
  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题
  • ¥15 COCOS的问题COCOS的问题
  • ¥15 FPGA-SRIO初始化失败