From my answer to a duplicate question. I think this is important enough to call out that I'm reposting the answer here:
The technique of testing specifically against true or false is not only an undesirable practice from a style point of view, it's a bad practice from a code correctness point of view. Testing against true can (and probably will) lead to subtle bugs:
Consider the following:
// needs C++ to get true/false keywords
// or needs macros (or something) defining true/false appropriately
int main()
{
int isGood = -1;
if (isGood == true) {
printf( "isGood == true\n");
}
else {
printf( "isGood != true\n");
}
if (isGood) {
printf( "isGood is true\n");
}
else {
printf( "isGood is not true\n");
}
return 0;
}
This displays the following:
isGood != true
isGood is true
If you feel the need to test variable that is used as a boolean flag against true/false (which shouldn't be done in my opinion), you should use the idiom of always testing against false because false can have only one value (0) while a true can have multiple possible values (anything other than 0):
if (isGood != false) ... // instead of using if (isGood == true)
Some people will have the opinion that this is a flaw in C/C++, and that may be true. But it's a fact of life in those languages (and probably many others) so I would stick to the short idiom, even in languages like C# that do not allow you to use an integral value as a boolean.
foo == trueorfoo == falseI feel a compelling need to simplify it. Just likeif (foo) return true; else return false;, which I always feel a need to simplify intoreturn foo. – Chris Jester-Young Oct 8 at 3:16(if foo == true)betrays a lack of understanding of your code. Theifalready tests the condition for truth, there's no point in repeating it. You might as well writeif ((foo == true) == true)just to be on the safe side ;) – jalf Oct 8 at 6:31if (a < b == true)– UncleBens Oct 8 at 6:34