unsigned char te1,te2,te3
te1 = 0xff;
te2 = 0x00;
if(te2 == (~te1))
{
te3 = 1;
}
else
{
te3 = 2;
}
最后te3为多少?为什么?
unsigned char te1,te2,te3
te1 = 0xff;
te2 = 0x00;
if(te2 == (~te1))
{
te3 = 1;
}
else
{
te3 = 2;
}
最后te3为多少?为什么?
//@author Mr zhang zhenyuya@163.com
#include
int main() {
unsigned char te1,te2,te3;
te1 = 0xff;
te2 = 0x00; //te2二进制:00000000
if(te3 == (~te1)){
te3 = 1;
}
else{
te3 = 2;
}
printf("%d",te3);//输出:2
printf("%u",(char)(~te1));//无符号char 输出是:0
//无符号char 输出解析:
//te1:0000 0000 0000 0000 0000 0000 1111 1111
//~te1:1111 1111 1111 1111 1111 1111 0000 0000
//~te1强制转换char:0000 0000 所以输出为0
printf("%u",(~te1)); //无符号 输出是:4294967040
//无符号 输出解析:
//te1:0000 0000 0000 0000 0000 0000 1111 1111
//~te1:1111 1111 1111 1111 1111 1111 0000 0000
//~te1=二进制1111 1111 1111 1111 1111 1111 0000 0000=4294967040
printf("%d",(~te1)); //有符号int 输出是:-256
//有符号 输出解析:
//te1:0000 0000 0000 0000 0000 0000 1111 1111
//~te1:1111 1111 1111 1111 1111 1111 0000 0000
//由于:~te1开头为1 是负数 补码输出
//~te1=1000 0000 0000 0000 0000 0000 1111 1111 + 1 = -256
if(-256 == (~te1)){
te3 = 1;
}
else{
te3 = 2;
}
printf("%d",te3);//输出:1
//说明在条件语句中(~te1)是按有符号输出 然后在做比较。
return 0;
}