Post Made Community Wiki by Community
show/hide this revision's text 3 change var name to isGood to match question

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 some_val isGood = -1;

    if (some_val isGood == true) {
        printf( "some_val isGood == true\n");
    }
    else {
        printf( "some_val isGood != true\n");
    }

    if (some_val) isGood) {
        printf( "some_val isGood is true\n");
    }
    else {
        printf( "some_val isGood is not true\n");
    }

    return 0;
}

This displays the following result:

some_val 

isGood != true
some_val 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 (some_val isGood != false) ...  // instead of using if (some_val isGood == true)

Soem

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.

show/hide this revision's text 2 added 104 characters in body

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 defining true/false appropriately
int main( int argc, char* argv[])
{
    int some_val = 2;

    -1;

    if (some_val == true) {
        printf( "some_val == true\n");
    }
    else {
        printf( "some_val != true\n");
    }

    if (some_val) {
        printf( "some_val is true\n");
    }
    else {
        printf( "some_val is not true\n");
    }

    return 0;
}

This displays the following result:

some_val != true
some_val 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 (some_val != false) ...  // instead of using if (some_val == true)

Soem 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.

show/hide this revision's text 1