vote up 26 vote down star
6

I keep seeing code that does checks like this

if (IsGood == false)
{
   DoSomething();
}

or this

if (IsGood == true)
{
   DoSomething();
}

I hate this syntax, and always use the following syntax.

if (IsGood)
{
   DoSomething();
}

or

if (!IsGood)
{
   DoSomething();
}

Is there any reason to use '== true' or '== false'?

Is it a readability thing? Do people just not understand Boolean variables?

Also, is there any performance difference between the two?

flag
5  
If this really bothers you this much, it is going to be a long, hard life for you. – Rich B Dec 10 '08 at 14:26
show 10 more comments

41 Answers

1 2 next
vote up 88 vote down check

I follow the same syntax as you, it's less verbose.

People (more beginner) prefer to use == true just to be sure that it's what they want. They are used to use operator in their conditional... they found it more readable. But once you got more advanced, you found it irritating because it's too verbose.

link|flag
2  
56 votes for an almost trivial opinion? Ha, this site is out of control. – JC Dec 10 '08 at 18:20
2  
When I see == for boolean types, I think that it is an indicator that the person who uses == does fully understand boolean logic and what it means. – Adam K. Johnson Dec 16 '08 at 18:05
show 13 more comments
vote up 0 vote down

If you happen to be working in perl you have the option of

unless($isGood)
link|flag
vote up 0 vote down

If you really think you need:

if (Flag == true)

then since the conditional expression is itself boolean you probably want to expand it to:

if ((Flag == true) == true)

and so on. How many more nails does this coffin need?

link|flag
vote up 0 vote down

I would

if ( isGood ) {
  doSomething();

}

and

if( isNotGood ) {
    doSomethngElse();
}

Reads better.

link|flag
vote up 0 vote down

One could argue that test like if isValidDate==true can lead to overnesting. Consider a block of code that's validating that we have valid data from a user, for instance:

if ( isValidDate==true ) {
    if ( isValidQuantity==true) {
         if ( isOtherThingValid==true) {
              bool result = doThing();
              if ( result == true ) {
                   thatWorked();
         } // long block of code that tries to compensate for OtherThing's invalidness
    } // obtuse function call to a third party library to send an email regarding the invalid quantity
} // is this the function close brace or the if...

This drives me crazy, which is partially why I've developed a habit of doing things the other way round:

if ( isValidDate==false) {
    logThisProblem("Invalid date provided.");
    return somethingUseful;
}

if ( isValidQuantity==false) {
    logThisProblem("Invalid quantity provided.");
    return somethingUseful;
}

if ( isOtherThingValid==false) {
    logThisProble("Other thing not valid.");
    return somethingUseful;
}

// OK ... we've made it this far...
bool result = doThing(date, quantity, otherThing);
link|flag
show 1 more comment
vote up 0 vote down

I like to use different styles depending on the naming of the variables, for example:

Variables named with a prefix like Is, Has etc. with which by looking at the name is obvious that are booleans I use:

if(IsSomething)

but if I have variables that do not have such a prefix I like to use

if(Something == true)

Which ever form you use, you should decide based on the programing language you use it in. The meaning of

if(Something) and if(Something == true)

can have very different meaning in different programing languages.

link|flag
vote up 0 vote down

In a language like C where there is no "Boolean" type then I recommend the longer way ie

if( is_good == True)
{
}

The reason is is_good isn't only True/False (most likely implemented as a char) and hence can get corrupted by other values or not set correctly.

So what good is this? Your code will be able to pick up any problems with is_good being set incorrectly because with out the == True or == False check anything will go for a true ;) And if you really mean a boolean then that's bad.

link|flag
vote up 1 vote down

I do not use == but sometime I use != because it's more clear in my mind. BUT at my job we do not use != or ==. We try to get a name that is significatif with hasXYZ() or isABC().

link|flag
vote up 0 vote down

One size doesn't fit all. Sometimes a more terse form can be made plain or is idiomatic, like !(x % y) , which returns "True" if y is a factor of x.

Other times, a more explicit comparison would be more useful. [(x, y) for x in range(10) for y in range(10) if not (x and y)] is not as plain as [(x, y) for x in range(10) for y in range(10) if (x == 0 or y == 0)]

link|flag
vote up 1 vote down

As long as we have either if(isGood) or if(!isGood) it is fine.

Sometimes I come across code like this ...

if(!getGreatGrandFateher.getGrandFather().getFather().getFirstChild().isMale())
{
   doSomething();
}

At first sight this misleads that doSomething() is called if it is Male. The small '!' after "if" is getting lost in big code construct like the above.

Explicit check like below provides better readability

if(getGreatGrandFateher.getGrandFather().getFather().getFirstChild().isMale() == false)
{
   doSomething();
}
link|flag
show 1 more comment
vote up 0 vote down

I think it really depends on the language.

Say, in PHP, certain functions could either return false, and return non-negative numbers.

Then the:

if(foo(bar)) { ... }

scheme won't work too well, because you can't tell between return of false or 0.

In other languages that doesn't have this nasty little FUBAR, I think either form is acceptable.

link|flag
vote up 2 vote down

You forgot:

if(IsGood == FileNotFound)

link|flag
show 1 more comment
vote up 1 vote down

Cybis, when coding in C++ you can also use the not keyword. It's part of the standard since long time ago, so this code is perfectly valid:

if (not foo ())
   bar ();

Edit: BTW, I forgot to mention that the standard also defines other boolean keywords such as and (&&), bitand (&), or (||), bitor (|), xor (^)... They are called operator synonyms.

link|flag
show 3 more comments
vote up 2 vote down

The !IsGood pattern is eaiser to find than IsGood == false when reduced to a regular expression.

/\b!IsGood\b/

vs

/\bIsGood\s*==\s*false\b/
/\bIsGood\s*!=\s*true\b/
/\bIsGood\s*(?:==\s*false|!=\s*true)\b/
link|flag
vote up 0 vote down

Coding in C#/C++/Java/etc... I always prefer

if (something == true)
if (something == false)

over

if (something)
if (!something)

because the exclamation point is just difficult to see at a glance unless I used a large font (but then I'd see less code on the page - not all of us can afford 24"+ monitors). I especially don't like being inconsistent and using if (something) and if (something == false)

When I code in Python, however, I almost always prefer

if something:
if not something:

because the 'not' is plainly visible.

link|flag
show 2 more comments
vote up 5 vote down

I've seen the following as a C/C++ style requirement.

if ( true == FunctionCall()) {
  // stuff
}

The reasoning was if you accidentally put "=" instead of "==", the compiler will bail on assigning a value to a constant. In the meantime it hurts the readability of every single if statement.

link|flag
show 1 more comment
vote up 2 vote down

Only thing worse is

if (true == IsGood) {....

Never understood the thought behind that method.

link|flag
show 2 more comments
vote up 1 vote down

In many languages, the difference is that in one case, you are having the compiler/interpreter dictate the meaning of true or false, while in the other case, it is being defined by the code. C is a good example of this.

if (something) ...

In the above example, "something" is compared to the compiler's definition of "true." Usually this means "not zero."

if (something == true) ...

In the above example, "something" is compared to "true." Both the type of "true" (and therefor the comparability) and the value of "true" may or may not be defined by the language and/or the compiler/interpreter.

Often the two are not the same.

link|flag
vote up 4 vote down

I prefer to use:

if (IsGood)
{
    DoSomething();
}

and

if (IsGood == false)
{
    DoSomething();
}

as I find this more readable - the ! is just too easy to miss (in both reading and typing); also "if not IsGood then..." just doesn't sound right when I hear it, as opposed to "if IsGood is false then...", which sounds better.

link|flag
vote up 5 vote down

From the answers so far, this seems to be the consensus:

  1. The short form is best in most cases. (IsGood and !IsGood)
  2. Boolean variables should be written as a positive. (IsGood instead of IsBad)
  3. Since most compilers will output the same code either way, there is no performance difference, except in the case of interpreted languages.
  4. This issue has no clear winner could probably be seen as a battle in the religious war of coding style.
link|flag
3  
I disagree that there is no clear winner - especially in C/C++. It's not just a style issue, there can be semantic differences. Using the longer form can cause subtle bugs. – Michael Burr Dec 10 '08 at 17:27
show 1 more comment
vote up 1 vote down

For some reason I've always liked

if (IsGood)

more than

if (!IsBad)

and that's why I kind of like Ruby's unless (but it's a little too easy to abuse):

unless (IsBad)

and even more if used like this:

raise InvalidColor unless AllowedColors.include?(color)
link|flag
vote up 9 vote down

The technique of testing specifically against true or false is definitely bad practice if the variable in question is really supposed to be used as a boolean value (even if its type is not boolean) - especially in C/C++. Testing against true can (and probably will) lead to subtle bugs:

These apparently similar tests give opposite results:

// needs C++ to get true/false keywords
// or needs macros (or something) defining true/false appropriately
int main( int argc, char* argv[])
{
    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 result:

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
vote up 1 vote down

Ah, I have some co-worked favoring the longer form, arguing it is more readable than the tiny !

I started to "fix" that, since booleans are self sufficient, then I dropped the crusade... ^_^ They don't like clean up of code here, anyway, arguing it makes integration between branches difficult (that's true, but then you live forever with bad looking code...).

If you write correctly your boolean variable name, it should read naturally:
if (isSuccessful) vs. if (returnCode)

I might indulge in boolean comparison in some cases, like:
if (PropertyProvider.getBooleanProperty(SOME_SETTING, true) == true) because it reads less "naturally".

link|flag
vote up 0 vote down

There are some cases where doing that is actually useful, though not often.

Here's an example. In Actionscript 2, booleans have 3 possible values:

  • true
  • false
  • null/undefined

I'll generally do something like this in methods that take optional boolean arguments:

function myFunc(b:Boolean):Void {
  if(b == true) {
    // causes b to default to false, as null/undefined != true
  }
}

OR

function myFunc(b:Boolean):Void {
  if(b != false) {
    // causes b to default to true, as null/undefined != false
  }
}

depending on what I want to default the value to. Though if I need to use the boolean multiple time I'll do something like this:

function myFunc(b:Boolean):Void {
  b = (b == true); // default to false
}

OR

function myFunc(b:Boolean):Void {
  b = (b != false); // default to true
}
link|flag
vote up 1 vote down

The two forms are semantically identical, and produce the same machine code, so why not use the one that's more readable?

if(IsGood == false) is better than if(!IsGood).

When scanning code, it's easy to mistake the "!" preceding a bool variable for a character in the bool variable.

link|flag
vote up 5 vote down

It's possible (although unlikely, at least I hope) that in C code TRUE and FALSE are #defined to things other than 1 and 0. For example, a programmer might have decided to use 0 as "true" and -1 as "false" in a particular API. The same is true of legacy C++ code, since "true" and "false" were not always C++ keywords, particularly back in the day before there was an ANSI standard.

It's also worth pointing out that some languages--particularly script-y ones like Perl, JavaScript, and PHP--can have funny interpretations of what values count as true and what values count as false. It's possible (although, again, unlikely on hopes) that "foo == false" means something subtly different from "!foo". This question is tagged "language agnostic", and a language can define the == operator to not work in ways compatible with the ! operator.

link|flag
show 1 more comment
vote up 23 vote down

I always chuckle (or throw something at someone, depending on my mood) when I come across

if (someBoolean == true) { /* ... */ }

because surely if you can't rely on the fact that your comparison returns a boolean, then you can't rely on comparing the result to true either, so the code should become

if ((someBoolean == true) == true) { /* ... */ }

but, of course, this should really be

if (((someBoolean == true) == true) == true) { /* ... */ }

but, of course ...

(ah, compilation failed. Back to work.)

link|flag
show 1 more comment
vote up 0 vote down

While it's not a practical difference, I've always regards == as a numeric operator, and as such it is not applicable to boolean types. The closest boolean operator is "equivalence" (not exclusive or), which doesn't have a C style operator.

That way the strictly boolean test becomes

if (!(IsGood ^ true))

As an illustration of the problems with numeric operators on booleans, what is the boolean evalution of

true / 2
link|flag
show 3 more comments
vote up 0 vote down

The only time I can think where the more vebose code made sense was in pre-.NET Visual Basic where true and false were actually integers (true=-1, false=0) and boolean expressions were considered false if they evaluated to zero and true for any other nonzero values. So, in the case of old VB, the two methods listed were not actually equivalent and if you only wanted something to be true if it evaluated to -1, you had to explicitly compare to 'true'. So, an expression that evaluates to "+1" would be true if evaluated as integer (because it is not zero) but it would not be equivalent to 'true'. I don't know why VB was designed that way, but I see a lot of boolean expressions comparing variables to true and false in old VB code.

link|flag
vote up 3 vote down

For readability, you might consider a property that relies on the other property:

public bool IsBad get { { return !IsGood; } }

Then, you can really get across the meaning:

if(IsBad)
{
    ...
}
link|flag
show 3 more comments
1 2 next

Your Answer

Get an OpenID
or

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