连等的if语句_小心编译器

本文通过VS2005编译器下的测试代码,揭示了三元运算符中等价条件表达式的实际运行逻辑,指出在特定条件下,`if(nR==nG==nB==0)`与`if((nR==0)&&(nG==0)&&(nB==0))`并非完全等价,强调了在编写代码时需关注这种细节的重要性。
摘要由CSDN通过智能技术生成

 UINT nR = GetRValue (clrDest);
UINT nG = GetGValue (clrDest);
UINT nB =GetBValue (clrDest);
// if(nR == nG == nB == 0)
if((nR == 0)&&(nG==0)&&(nB == 0)) 这两条if语句竟然不是等价的。。

这是在vs2005编译器下测试得到的情况,不知道其他的编译器是不是这样工作的。以后写代码一定要小心啊!

 

vs2005 测试代码:

// testIf.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <windows.h>
#include <stdio.h>

int _tmain(int argc, _TCHAR* argv[])
{
 UINT nR = 25;
 UINT nG = 25;
 UINT nB = 23;
 // if(nR == nG == nB == 0)
 if((nR == 0)&&(nG==0)&&(nB == 0))
 {
  printf("dddd");
 }
 else
 {
  printf("why_why");
 }
 return 0;
}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值