3

问题是我有一个包含 200 个索引的字节数组,只是想检查 MyArray[75] 的第四位是零(0)还是一(1)。

byte[] MyArray; //with 200 elements

//check the fourth BIT of  MyArray[75]
4

3 回答 3

8

元素 75 中的第四位?

if((MyArray[75] & 8) > 0) // bit is on
else // bit is off

& 运算符允许您将值用作掩码。

xxxxxxxx = ?
00001000 = 8 &
----------------
0000?000 = 0 | 8

您可以使用此方法使用相同的技术收集任何位值。

1   = 00000001
2   = 00000010
4   = 00000100
8   = 00001000
16  = 00010000
32  = 00100000
64  = 01000000
128 = 10000000
于 2009-08-10T18:50:55.007 回答
4

就像是:

if ( (MyArray[75] & (1 << 3)) != 0)
{
   // it was a 1
}

假设您的意思是右边的第 4 位。

而且您可能想检查一下System.Collections.BitArray,以确保您没有重新发明轮子。

于 2009-08-10T18:51:12.480 回答
2
    private bool BitCheck(byte b, int pos)
    {
        return (b & (1 << (pos-1))) > 0;
    }
于 2009-08-10T18:55:47.213 回答