关于逻辑移位、算术移位可参见迅雷深大笔试题部分。的一道题。
以前看到C++标准上说,移位运算符(<>)出界时的行为并不确定:
The behavior is undefined if the right operand is negative, orgreater than or equal to the length in bits of the promoted left operand.
我当时也没有深究过这个问题。前几天有个网友来信问起这件事,我才发现,这和IntelCPU的
什么是位运算
位运算符按二进制进行运算,这些运算符只能用于整数类型的操作。如:char,short,int,long
通过位运算符来获取高位值和低位值
int a=0x1234;
int high,low;
high = (a>>8) &0x00ff;
low = a & 0x00ff;
左移运算符和右移运算符(<>)
左移是将一个二进制数,移动若干位,右边空出的位置用0来填补,高位左移溢出应该舍弃该高位。
如:inta = 8, a = 00001000;
a<