我对位掩码和位操作很新。你能帮我理解一下吗?我有三个整数a,b和c,我用下面的操作创建了一个新的数字d:
int a = 1;
int b = 2;
int c = 92;
int d = (a << 14) + (b << 11) + c;
我们如何使用d?
重建a,b和c答案 0 :(得分:1)
我不知道您的a
,b
和c
的范围。但是,假设a
和b
为3位,c
为11位,我们可以这样做:
a = ( d >> 14 ) & 7;
b = ( d >> 11 ) & 7;
c = ( d >> 0 ) & 2047;
更新:
and-mask的值计算如下:(2^NumberOfBits)-1
答案 1 :(得分:0)
a is 0000 0000 0000 0000 0000 0000 0000 0001
b is 0000 0000 0000 0000 0000 0000 0000 0010
c is 0000 0000 0000 0000 0000 0000 0101 1100
a<<14 is 0000 0000 0000 0000 0100 0000 0000 0000
b<<11 is 0000 0000 0000 0000 0001 0000 0000 0000
c is 0000 0000 0000 0000 0000 0000 0101 1100
d is 0000 0000 0000 0000 0101 0000 0101 1100
^ ^ { }
a b c
So a = d>>14
b = d>>11 & 7
c = d>>0 & 2047
By the way ,you should make sure the b <= 7 and c <= 2047