vote up 1 vote down star

I was wondering what style others' use when writing conditional statements that include boolean types. Currently I'm caught between using two styles.

bool foo;

if (foo == true)
if (foo)

if (foo == false)
if (!foo)

Obviously the first set is a bit more obvious. However, when combining conditions it could get a bit clunky.

if (foo == true || blah == false || abc == true)
if (foo || !blah || abc)

Switching between one style for short conditionals and the other for long conditionals seems like inconsistent coding so it seems like I'd have to choose between one or the other. What do you prefer or consider better style and why?

flag
11  
To me, booleans are meant to be used directly in conditions; that's why they're booleans in the first place! Every time I see something like foo == true or foo == false I feel a compelling need to simplify it. Just like if (foo) return true; else return false;, which I always feel a need to simplify into return foo. – Chris Jester-Young Oct 8 at 3:16
Of course there's the odd case when some third party library has a #define true 0, #define false 1: thedailywtf.com/Articles/… (last snippet) – Matthieu M. Oct 8 at 6:31
5  
agreed. I think (if foo == true) betrays a lack of understanding of your code. The if already tests the condition for truth, there's no point in repeating it. You might as well write if ((foo == true) == true) just to be on the safe side ;) – jalf Oct 8 at 6:31
3  
You might also consider whether you want to be consistent with this style: if (a < b == true) – UncleBens Oct 8 at 6:34
Hmm - I didn't think this was subjective and argumentative. I thought it was a reasonable question, but a dupe. – Michael Burr Oct 9 at 2:25

closed as subjective and argumentative by Johannes Schaub - litb, Michael Burr, Goz, Rich B, Mehrdad Afshari Oct 8 at 17:18

8 Answers

vote up 0 vote down

In most cases I prefer to use enums over bools.

eg instead of

void useFile(FILE * f, bool shouldCloseAfterUse) {
    // ...
    if (shouldCloseAfterUse) {
        // ...
    }
}

// ...

useFile(file, false);

use

enum FileUseAction { DoNotCloseAfterUse, CloseAfterUse };

void useFile(FILE * f, FileUseAction action) {
    // ...
    if (action == CloseAfterUse) {
        // ...
    }
}

// ...

useFile(file, DoNotCloseAfterUse);

While the bool is just as clear inside the useFile function, the calling code is much clearer.

link|flag
Except that in the bool case, I can immediately, by looking at the function signature, guess what the second argument does. In the enum case, all I know is that it is... Some action related to using the file... – jalf Oct 8 at 23:01
vote up 4 vote down

Never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never never compare a boolean variable to a boolean literal!!!!!

A well chosen boolean variable name will stand all on its own, and reads as a question. eg This variable would read as "Is Foo?"

bool IsFoo;

Alternatively, it could read as a true/false sentence. eg This variable would read exactly as written "Foo Is Bar."

bool FooIsBar;

If you need to test for a false value, just go ahead and use the exclamation mark notation - its meaning is perfectly clear to any c++ programmer. I prefer to read these as "if Foo, then..." and "if not Foo, then..."

if (IsFoo) {}
if (!IsFoo){}

and I read these as "If Foo Is Bar, then..." and "If Foo Is not Bar, then..."

if (FooIsBar) {}
if (!FooIsBar) {}
link|flag
You can compare one boolean variable to another boolean variable; that should fall outside your "never" clause. Essentially, foo != bar is foo ^ bar, and foo == bar is, uhh...!foo ^ bar or foo ^ !bar. :-P – Chris Jester-Young Oct 8 at 16:04
Heh, just reread your answer, you mentioned comparing a boolean variable to a boolean value (presumed constant). Oh well. I'll leave my original comment anyway. :-P – Chris Jester-Young Oct 8 at 16:05
Good edit rlbond! That was definitely sloppy of me. – csj Oct 9 at 20:37
vote up 3 vote down

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.

link|flag
4  
The use of an int as a bool is a much more undesirable practice than the comparison against true and false. Use a bool as a bool and the code correctness argument goes away. – Darryl Oct 8 at 4:12
I agree with you. The ability to implicitly evaluate an number/pointer to a boolean is a flaw in C/C++. It sucks that "if (ptr)" means "if (ptr != NULL" and "if (num)" means "if (num != 0)". However, plenty of legacy code relies on it, so it can't be ignored. – dbkk Oct 8 at 4:13
@Darryl - using an int (or even a pointer) as a bool might be an undesirable practice, but it's one that's a pretty ingrained idiom in C/C++ code. I've heard arguments that using "if (somePtr) {...}" was better style than "if (somePtr != NULL) {...}". In C/C++ you ignore the use of ints as bool at your peril. In fact, in C you pretty much have no choice (since there's no bool type). – Michael Burr Oct 8 at 5:13
1  
@Michael - You're right, int for bool is a pretty ingrained idiom for C/C++ code. Unfortunately, C/C++ code is exactly what many people produce when they should be writing C++. In C++, int for bool should only appear when interfacing with legacy code (and only on the adapter layer). – Stephen C. Steel Oct 8 at 22:47
Just to clarify - I agree that you should use bool variables as stand-alone bools (and not use explicit tests for equality with 'true' or 'false') - I'm just saying that in addition to the style argument (which I agree with) there's a correctness argument that shouldn't be forgotten. – Michael Burr Oct 9 at 2:23
vote up 9 vote down

Another reason to steer clear of unnecessary equality operators is their eerie tendency to become assignment operators when you're not looking. I consider the lone boolean value to be more aesthetically pleasing and less bug prone.

link|flag
vote up 14 vote down

I consider code such as

if (aBoolVariable == true)

evidence of a fundamental lack of understanding of how boolean variables work. I strongly recommend against such code because it is redundant, possibly slower, and "dumber".

link|flag
+1 for "dumber". :-) – Chris Jester-Young Oct 8 at 3:30
"evidence of a fundamental lack of understanding": exactly what I was thinking. – Laurence Gonsalves Oct 8 at 3:45
3  
I agree with redundant and dumber, but I'd be scared of any compiler in which it was slower. – jalf Oct 8 at 6:31
Well, it wouldn't be slower in C or C++ most likely. But in interpreted languages it might be. – rlbond Oct 8 at 13:08
It's definitely not slower. Dumber alone is bad enough though. – Rex M Oct 9 at 19:24
vote up 0 vote down

You don't usually compared against true because true is defined as any non-zero value (even negative values) in C/C++.

Normally you would only compare against:

if (condition != false)
if (condition)

if (condition == false)
if (!condition)

I'm generally a lazy C++ coder and do if (condition) a lot and not use an equality operator :P

link|flag
1  
A bool variable should never be assigned any value other than true or false. If using ints as bools, your argument might apply. – Darryl Oct 8 at 4:06
1  
Yes, a bool can only be assigned true or false, but more often than not, function results for example give error codes (0 being ok). – Nick Bedford Oct 8 at 5:26
In the vein of explicit comparisons: if (result != 0 == true) :) – UncleBens Oct 8 at 6:32
vote up 13 vote down

If you give proper name you can avoid foo == true to foo most of the cases. For example

 If ( IsApplicationLoading ) {// Do something }
link|flag
vote up 33 vote down

If you name you boolean variables in form isName, then you'll see that forms if (isName) makes more sense than if (isName == true)

hasName, wasName and other forms are also useful.

link|flag
1  
@Tanmoy, sorry, if it makes you feel better, very often the same thing happens to me too :) – vava Oct 8 at 3:12
13  
+1. Any developer that does explicit equality comparisons between boolean literals and boolean variables should not be trusted. – Adam Robinson Oct 8 at 3:17
1  
100% agree with how good naming makes all the difference between whether == true is merely noise, or a complete nuisance. :-) +1 – Chris Jester-Young Oct 8 at 3:19
3  
@anon, it depends on the function. If it returns false if it wasn't successful then is should be rewritten to use exceptions. If it just returns some condition, like isMonday() then naming makes perfect sense. – vava Oct 8 at 3:28
1  
FYI, this class of word (is/has/was) is known as an "auxiliary verb". – Nathan Baulch Oct 8 at 4:49
show 15 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.