1 赋值语句的覆盖问题,这样重复定义变量i会产生一个警告,对应于不同的编译器,会产生不同的效果。
#include<iostream>
using namespace std;
int i = 0;
int main()
{
int i = i;
cout<< i <<endl;
return 0;
}
2 与或运算及逻辑与或运算
#include<iostream>
using namespace std;
int main()
{
int x=2, y, z;
x *= (y=z=5);
cout << x << endl; // 10
z = 3;
// 将z值赋值给y,然后判断x 与 y的值是否相等,不管是否相等,x的值始终没有变化
x == (y=z);
cout << x << endl;
x = (y==z); // 1
cout << x << endl;
x = (y&z); // y和z的与运算结果赋值给x
cout << x << endl; // 1
x = (y&&z); // y和z的逻辑与运算结果赋值给x
cout << x << endl; // 1
y = 4;
x = (y|z); // y和z的或运算结果赋值给x 100|011 -> 111
cout << x << endl; // 7
x = (y||z); // y和z的逻辑或运算结果赋值给x
cout << x << endl; // 1
return 0;
}
3 与运算的一个应用:统计整数二进制中含有多少个1.
#include<iostream>
using namespace std;
int func(int num)
{
int count = 0;
while(num)
{
count++;
// 每与运算一次,num中的位数少一个1
num = num&(num-1);
}
return count;
}
int main()
{
int x = 7;
cout << func(x) << endl; // 111 -> 3
return 0;
}
转载:https://blog.csdn.net/yeler082/article/details/102014061
查看评论