左移右移为负数的情况


C语言中,移位操作是经常用到的
到时有个现象是i<<-1i<<31的结果一样
1 “-1”表示成补码是1111 ….11 1111 ,31是 0000 …0011 1111,,他们的后六位是一样的。
Interger的移位运算只注意后6位

Note also that rotation by any multiple of 32 is a no-op, so all but the last five bits of the rotation distance can be ignored, even if the distance is negative:

总结:将负数写为补码,这个数的低6位便是其真正移位的数字

int main()
{
	int size = 1;
	int sz1 = size << 1;
	int sz2 = size << 193;

	if (sz1 == sz2)
	{
		printf("sz1==sz2\n");
	}
	else
	{
		printf("sz1==sz2\n");
	}
	return 0;
}

结果 sz1==sz2


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM