Should I use `!IsGood` or `IsGood == false`? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T07:19:16Zhttp://stackoverflow.com/feeds/question/356217http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false26Should I use `!IsGood` or `IsGood == false`?chills422008-12-10T14:23:51Z2009-10-30T17:51:31Z
<p>I keep seeing code that does checks like this</p>
<pre><code>if (IsGood == false)
{
DoSomething();
}
</code></pre>
<p>or this</p>
<pre><code>if (IsGood == true)
{
DoSomething();
}
</code></pre>
<p>I hate this syntax, and always use the following syntax.</p>
<pre><code>if (IsGood)
{
DoSomething();
}
</code></pre>
<p>or</p>
<pre><code>if (!IsGood)
{
DoSomething();
}
</code></pre>
<p>Is there any reason to use '<code>== true</code>' or '<code>== false</code>'?</p>
<p>Is it a readability thing? Do people just not understand Boolean variables?</p>
<p>Also, is there any performance difference between the two?</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356223#3562233Answer by Bob for Should I use `!IsGood` or `IsGood == false`?Bob2008-12-10T14:26:23Z2008-12-10T14:26:23Z<p>I prefer !IsGood because to me, it is more clear and consise. Checking if a boolean == true is redundant though, so I would avoid that. Syntactically though, I don't think there is a difference checking if IsGood == false.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356224#35622488Answer by Daok for Should I use `!IsGood` or `IsGood == false`?Daok2008-12-10T14:26:26Z2008-12-10T14:26:26Z<p>I follow the same syntax as you, it's less verbose.</p>
<p>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.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356226#35622613Answer by Michael Haren for Should I use `!IsGood` or `IsGood == false`?Michael Haren2008-12-10T14:27:19Z2008-12-10T14:27:19Z<p>I agree with you (and am also annoyed by it). I think it's just a slight misunderstanding that <code>IsGood == true</code> evaluates to a bool, which is what IsGood was to begin with.</p>
<p>I often see these near instances of <code>SomeStringObject.ToString()</code>.</p>
<p>That said, in languages that play looser with types, this might be justified. But not in C#.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356228#3562288Answer by adam for Should I use `!IsGood` or `IsGood == false`?adam2008-12-10T14:27:33Z2008-12-10T14:27:33Z<p>Readability only..</p>
<p>If anything the way you prefer is more efficient when compiled into machine code. However I expect they produce <strong>exactly</strong> the same machine code.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356232#3562323Answer by xan for Should I use `!IsGood` or `IsGood == false`?xan2008-12-10T14:28:58Z2008-12-10T14:28:58Z<p>Occasionally it has uses in terms of readability. Sometimes a named variable or function call can end up being a double-negative which can be confusing, and making the expected test explicit like this can aid readability.</p>
<p>A good example of this might be strcmp() C/C++ which returns 0 if strings are equal, otherwise < or > 0, depending on where the difference is. So you will often see:</p>
<pre><code>if(strcmp(string1, string2)==0) { /*do something*/ }
</code></pre>
<p>Generally however I'd agree with you that</p>
<pre><code>if(!isCached)
{
Cache(thing);
}
</code></pre>
<p>is clearer to read.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356234#3562346Answer by ctacke for Should I use `!IsGood` or `IsGood == false`?ctacke2008-12-10T14:29:21Z2008-12-10T14:29:21Z<p>Some people find the explicit check against a known value to be more readable, as you can infer the variable type by reading. I'm agnostic as to whether one is better that the other. They both work. I find that if the variable inherently holds an "inverse" then I seem to gravitate toward checking against a value:</p>
<pre><code>if(IsGood) DoSomething();
</code></pre>
<p>or</p>
<pre><code>if(IsBad == false) DoSomething();
</code></pre>
<p>instead of</p>
<pre><code>if(!IsBad) DoSomething();
</code></pre>
<p>But again, It doen't matter much to me, and I'm sure it ends up as the same IL.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356241#3562412Answer by mookid for Should I use `!IsGood` or `IsGood == false`?mookid2008-12-10T14:30:18Z2008-12-10T14:30:18Z<p>Personally, I prefer the form that Uncle Bob talks about in Clean Code:</p>
<pre><code>(...)
if (ShoouldDoSomething())
{
DoSomething();
}
(...)
bool ShouldDoSomething()
{
return IsGood;
}
</code></pre>
<p>where conditionals, except the most trivial ones, are put in predicate functions. Then it matters less how readable the implementation of the boolean expression is.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356244#35624422Answer by IgorK for Should I use `!IsGood` or `IsGood == false`?IgorK2008-12-10T14:31:17Z2008-12-10T15:51:26Z<p>I would prefer <strong>shorter</strong> variant. But sometimes <code>== false</code> helps to make your code even shorter:</p>
<p>For real-life scenario in projects using C# 2.0 I see only one good reason to do this: <code>bool?</code> type. Three-state <code>bool?</code> is useful and it is easy to check one of its possible values this way.</p>
<p>Actually you can't use <code>(!IsGood)</code> if <code>IsGood</code> is <code>bool?</code>. But writing <code>(IsGood.HasValue && IsGood.Value)</code> is worse than <code>(IsGood == true)</code>.</p>
<p>Play with this sample to get idea:</p>
<pre><code> bool? value = true; // try false and null too
if (value == true)
{
Console.WriteLine("value is true");
}
else if (value == false)
{
Console.WriteLine("value is false");
}
else
{
Console.WriteLine("value is null");
}
</code></pre>
<p>There is one more case I've just discovered where <code>if (!IsGood) { ... }</code> is not the same as <code>if (IsGood == false) { ... }</code>. But this one is not realistic ;) Operator overloading may kind of help here :) (and operator true/false that AFAIK is discouraged in C# 2.0 because it is intended purpose is to provide bool?-like behavior for user-defined type and now you can get it with standard type!)</p>
<pre><code>using System;
namespace BoolHack
{
class Program
{
public struct CrazyBool
{
private readonly bool value;
public CrazyBool(bool value)
{
this.value = value;
}
// Just to make nice init possible ;)
public static implicit operator CrazyBool(bool value)
{
return new CrazyBool(value);
}
public static bool operator==(CrazyBool crazyBool, bool value)
{
return crazyBool.value == value;
}
public static bool operator!=(CrazyBool crazyBool, bool value)
{
return crazyBool.value != value;
}
#region Twisted logic!
public static bool operator true(CrazyBool crazyBool)
{
return !crazyBool.value;
}
public static bool operator false(CrazyBool crazyBool)
{
return crazyBool.value;
}
#endregion Twisted logic!
}
static void Main()
{
CrazyBool IsGood = false;
if (IsGood)
{
if (IsGood == false)
{
Console.WriteLine("Now you should understand why those type is called CrazyBool!");
}
}
}
}
}
</code></pre>
<p>So... please, use operator overloading with caution :(</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356261#35626111Answer by Nick Berardi for Should I use `!IsGood` or `IsGood == false`?Nick Berardi2008-12-10T14:35:27Z2008-12-10T14:35:27Z<p>According to <a href="http://www.codinghorror.com/blog/archives/000020.html" rel="nofollow">Code Complete</a> a book <a href="http://www.codinghorror.com" rel="nofollow">Jeff got his name from</a> and holds in high regards the following is the way you should treat booleans.</p>
<pre><code>if (IsGood)
if (!IsGood)
</code></pre>
<p>I use to go with actually comparing the booleans, but I figured why add an extra step to the process and treat booleans as second rate types. In my view a comparison returns a boolean and a boolean type is already a boolean so why no just use the boolean.</p>
<p>Really what the debate comes down to is using good names for your booleans. Like you did above I always phrase my boolean objects in the for of a question. Such as</p>
<ul>
<li>IsGood</li>
<li>HasValue</li>
<li>etc.</li>
</ul>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356273#3562732Answer by Giovanni Galbo for Should I use `!IsGood` or `IsGood == false`?Giovanni Galbo2008-12-10T14:37:22Z2008-12-10T14:37:22Z<p>I prefer the <em>!IsGood</em> approach, and I think most people coming from a c-style language background will prefer it as well. I'm only guessing here, but I think that most people that write <em>IsGood == False</em> come from a more verbose language background like Visual Basic.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356292#3562920Answer by DannySmurf for Should I use `!IsGood` or `IsGood == false`?DannySmurf2008-12-10T14:42:16Z2008-12-10T14:42:16Z<p>It seems to me (though I have no proof to back this up) that people who start out in C#/java type languages prefer the "if (CheckSomething())" method, while people who start in other languages (C++: specifically Win32 C++) tend to use the other method out of habit: in Win32 "if (CheckSomething())" won't work if CheckSomething returns a BOOL (instead of a bool); and in many cases, API functions explicitly return a 0/1 int/INT rather than a true/false value (which is what a BOOL is).</p>
<p>I've always used the more verbose method, again, out of habit. They're syntactically the same; I don't buy the "verbosity irritates me" nonsense, because the programmer is not the one that needs to be impressed by the code (the computer does). And, in the real world, the skill level of any given person looking at the code I've written will vary, and I don't have the time or inclination to explain the peculiarities of statement evaluation to someone who may not understand little unimportant bits like that.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356300#3563001Answer by John Kraft for Should I use `!IsGood` or `IsGood == false`?John Kraft2008-12-10T14:43:55Z2008-12-10T14:43:55Z<p>We tend to do the following here:</p>
<pre><code>if(IsGood)
</code></pre>
<p>or</p>
<pre><code>if(IsGood == false)
</code></pre>
<p>The reason for this is because we've got some legacy code written by a guy that is no longer here (in Delphi) that looks like:</p>
<pre><code>if not IsNotGuam then
</code></pre>
<p>This has caused us much pain in the past, so it was decided that we would always try to check for the positive; if that wasn't possible, then compare the negative to false.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356366#3563663Answer by Brian Genisio for Should I use `!IsGood` or `IsGood == false`?Brian Genisio2008-12-10T15:02:03Z2008-12-10T15:02:03Z<p>For readability, you might consider a property that relies on the other property:</p>
<pre><code>public bool IsBad get { { return !IsGood; } }
</code></pre>
<p>Then, you can really get across the meaning:</p>
<pre><code>if(IsBad)
{
...
}
</code></pre>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356403#3564030Answer by Jim Anderson for Should I use `!IsGood` or `IsGood == false`?Jim Anderson2008-12-10T15:12:40Z2008-12-10T15:12:40Z<p>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.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356530#3565300Answer by davebush for Should I use `!IsGood` or `IsGood == false`?davebush2008-12-10T15:47:24Z2008-12-10T15:47:24Z<p>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. </p>
<p>That way the strictly boolean test becomes </p>
<pre><code>if (!(IsGood ^ true))
</code></pre>
<p>As an illustration of the problems with numeric operators on booleans, what is the boolean evalution of </p>
<pre><code>true / 2
</code></pre>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356565#35656523Answer by raimesh for Should I use `!IsGood` or `IsGood == false`?raimesh2008-12-10T15:55:45Z2008-12-10T15:55:45Z<p>I always chuckle (or throw something at someone, depending on my mood) when I come across </p>
<pre><code>if (someBoolean == true) { /* ... */ }
</code></pre>
<p>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</p>
<pre><code>if ((someBoolean == true) == true) { /* ... */ }
</code></pre>
<p>but, of course, this should really be</p>
<pre><code>if (((someBoolean == true) == true) == true) { /* ... */ }
</code></pre>
<p>but, of course ...</p>
<p>(ah, compilation failed. Back to work.)</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356580#3565805Answer by Parappa for Should I use `!IsGood` or `IsGood == false`?Parappa2008-12-10T16:01:08Z2008-12-10T16:01:08Z<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356608#3566081Answer by Christopher for Should I use `!IsGood` or `IsGood == false`?Christopher2008-12-10T16:08:12Z2008-12-10T16:08:12Z<p>The two forms are semantically identical, and produce the same machine code, so why not use the one that's more readable?</p>
<p>if(IsGood == false) is better than if(!IsGood).</p>
<p>When scanning code, it's easy to mistake the "!" preceding a bool variable for a character in the bool variable.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356614#3566140Answer by Herms for Should I use `!IsGood` or `IsGood == false`?Herms2008-12-10T16:10:04Z2008-12-10T16:10:04Z<p>There are some cases where doing that is actually useful, though not often.</p>
<p>Here's an example. In Actionscript 2, booleans have 3 possible values:</p>
<ul>
<li>true</li>
<li>false</li>
<li>null/undefined</li>
</ul>
<p>I'll generally do something like this in methods that take optional boolean arguments:</p>
<pre><code>function myFunc(b:Boolean):Void {
if(b == true) {
// causes b to default to false, as null/undefined != true
}
}
</code></pre>
<p>OR</p>
<pre><code>function myFunc(b:Boolean):Void {
if(b != false) {
// causes b to default to true, as null/undefined != false
}
}
</code></pre>
<p>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:</p>
<pre><code>function myFunc(b:Boolean):Void {
b = (b == true); // default to false
}
</code></pre>
<p>OR</p>
<pre><code>function myFunc(b:Boolean):Void {
b = (b != false); // default to true
}
</code></pre>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356668#3566681Answer by PhiLho for Should I use `!IsGood` or `IsGood == false`?PhiLho2008-12-10T16:30:18Z2008-12-10T16:30:18Z<p>Ah, I have some co-worked favoring the longer form, arguing it is more readable than the tiny !</p>
<p>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...).</p>
<p>If you write correctly your boolean variable name, it should read naturally:<br />
<code>if (isSuccessful)</code> vs. <code>if (returnCode)</code></p>
<p>I might indulge in boolean comparison in some cases, like:<br />
<code>if (PropertyProvider.getBooleanProperty(SOME_SETTING, true) == true)</code> because it reads less "naturally".</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356709#3567099Answer by Michael Burr for Should I use `!IsGood` or `IsGood == false`?Michael Burr2008-12-10T16:39:09Z2008-12-10T18:04:37Z<p>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 <code>true</code> can (and probably will) lead to subtle bugs:</p>
<p>These apparently similar tests give opposite results:</p>
<pre><code>// 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;
}
</code></pre>
<p>This displays the following result:</p>
<pre><code>isGood != true
isGood is true
</code></pre>
<p>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 (<code>0</code>) while a true can have multiple possible values (anything other than <code>0</code>):</p>
<pre><code>if (isGood != false) ... // instead of using if (isGood == true)
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356753#3567531Answer by Jonas Elfström for Should I use `!IsGood` or `IsGood == false`?Jonas Elfström2008-12-10T16:53:46Z2008-12-10T16:53:46Z<p>For some reason I've always liked</p>
<pre><code>if (IsGood)
</code></pre>
<p>more than</p>
<pre><code>if (!IsBad)
</code></pre>
<p>and that's why I kind of like Ruby's unless (but it's a little too easy to abuse):</p>
<pre><code>unless (IsBad)
</code></pre>
<p>and even more if used like this:</p>
<pre><code>raise InvalidColor unless AllowedColors.include?(color)
</code></pre>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356847#3568475Answer by chills42 for Should I use `!IsGood` or `IsGood == false`?chills422008-12-10T17:19:52Z2008-12-10T17:19:52Z<p>From the answers so far, this seems to be the consensus:</p>
<ol>
<li>The short form is best in most cases. (IsGood and !IsGood)</li>
<li>Boolean variables should be written as a positive. (IsGood instead of IsBad)</li>
<li>Since most compilers will output the same code either way, there is no performance difference, except in the case of interpreted languages.</li>
<li>This issue has no clear winner could probably be seen as a battle in the religious war of coding style.</li>
</ol>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356849#3568494Answer by unknown (yahoo) for Should I use `!IsGood` or `IsGood == false`?unknown (yahoo)2008-12-10T17:20:25Z2008-12-10T17:20:25Z<p>I prefer to use:</p>
<pre><code>if (IsGood)
{
DoSomething();
}
</code></pre>
<p>and</p>
<pre><code>if (IsGood == false)
{
DoSomething();
}
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/356924#3569241Answer by Sydius for Should I use `!IsGood` or `IsGood == false`?Sydius2008-12-10T17:41:25Z2008-12-10T17:41:25Z<p>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.</p>
<pre><code>if (something) ...
</code></pre>
<p>In the above example, "something" is compared to the compiler's definition of "true." Usually this means "not zero."</p>
<pre><code>if (something == true) ...
</code></pre>
<p>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.</p>
<p>Often the two are not the same.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/357052#3570522Answer by Wavel for Should I use `!IsGood` or `IsGood == false`?Wavel2008-12-10T18:21:47Z2008-12-10T18:21:47Z<p>Only thing worse is</p>
<pre><code>if (true == IsGood) {....
</code></pre>
<p>Never understood the thought behind that method.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/357129#3571295Answer by for Should I use `!IsGood` or `IsGood == false`?2008-12-10T18:51:43Z2008-12-10T18:51:43Z<p>I've seen the following as a C/C++ style requirement.</p>
<pre><code>if ( true == FunctionCall()) {
// stuff
}
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/357210#3572100Answer by Cybis for Should I use `!IsGood` or `IsGood == false`?Cybis2008-12-10T19:12:44Z2008-12-10T21:17:01Z<p>Coding in C#/C++/Java/etc... I always prefer</p>
<p><code>
if (something == true)<br/>
if (something == false)
</code></p>
<p>over</p>
<p><code>
if (something)<br/>
if (!something)
</code></p>
<p>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)</p>
<p>When I code in Python, however, I almost always prefer</p>
<p><code>
if something:<br/>
if not something:
</code></p>
<p>because the 'not' is plainly visible.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/357238#3572382Answer by yogman for Should I use `!IsGood` or `IsGood == false`?yogman2008-12-10T19:18:37Z2008-12-10T19:18:37Z<p>The <code>!IsGood</code> pattern is eaiser to find than <code>IsGood == false</code> when reduced to a regular expression.</p>
<pre><code>/\b!IsGood\b/
</code></pre>
<p>vs</p>
<pre><code>/\bIsGood\s*==\s*false\b/
/\bIsGood\s*!=\s*true\b/
/\bIsGood\s*(?:==\s*false|!=\s*true)\b/
</code></pre>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/357647#3576471Answer by Marc for Should I use `!IsGood` or `IsGood == false`?Marc2008-12-10T21:18:22Z2008-12-10T21:49:18Z<p>Cybis, when coding in C++ you can also use the <em>not</em> keyword. It's part of the standard since long time ago, so this code is perfectly valid:</p>
<pre><code>if (not foo ())
bar ();
</code></pre>
<p>Edit: BTW, I forgot to mention that the standard also defines other boolean keywords such as <em>and</em> (&&), <em>bitand</em> (&), <em>or</em> (||), <em>bitor</em> (|), <em>xor</em> (^)... They are called operator synonyms.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/357755#3577552Answer by P Daddy for Should I use `!IsGood` or `IsGood == false`?P Daddy2008-12-10T21:55:46Z2008-12-10T21:55:46Z<p>You forgot:</p>
<blockquote>
<p>if(IsGood == <a href="http://thedailywtf.com/Articles/What_Is_Truth_0x3f_.aspx" rel="nofollow">FileNotFound</a>)</p>
</blockquote>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/357784#3577840Answer by Calyth for Should I use `!IsGood` or `IsGood == false`?Calyth2008-12-10T22:10:16Z2008-12-10T22:10:16Z<p>I think it really depends on the language.</p>
<p>Say, in PHP, certain functions could either return false, and return non-negative numbers.</p>
<p>Then the:</p>
<pre><code>if(foo(bar)) { ... }
</code></pre>
<p>scheme won't work too well, because you can't tell between return of false or 0.</p>
<p>In other languages that doesn't have this nasty little FUBAR, I think either form is acceptable.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/358674#3586741Answer by Murthy for Should I use `!IsGood` or `IsGood == false`?Murthy2008-12-11T08:13:35Z2008-12-11T08:13:35Z<p>As long as we have either if(isGood) or if(!isGood) it is fine. </p>
<p>Sometimes I come across code like this ... </p>
<pre><code>if(!getGreatGrandFateher.getGrandFather().getFather().getFirstChild().isMale())
{
doSomething();
}
</code></pre>
<p>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.</p>
<p>Explicit check like below provides better readability</p>
<pre><code>if(getGreatGrandFateher.getGrandFather().getFather().getFirstChild().isMale() == false)
{
doSomething();
}
</code></pre>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/358717#3587170Answer by J.T. Hurley for Should I use `!IsGood` or `IsGood == false`?J.T. Hurley2008-12-11T08:56:40Z2008-12-11T08:56:40Z<p>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.</p>
<p>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)]</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/359532#3595321Answer by Pokus for Should I use `!IsGood` or `IsGood == false`?Pokus2008-12-11T14:30:15Z2008-12-11T14:30:15Z<p>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().</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/364326#3643260Answer by hhafez for Should I use `!IsGood` or `IsGood == false`?hhafez2008-12-12T22:10:02Z2008-12-12T22:10:02Z<p>In a language like C where there is no "Boolean" type then I recommend the longer way ie</p>
<pre><code>if( is_good == True)
{
}
</code></pre>
<p>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. </p>
<p>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.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/365426#3654260Answer by for Should I use `!IsGood` or `IsGood == false`?2008-12-13T16:53:30Z2008-12-13T16:53:30Z<p>I like to use different styles depending on the naming of the variables, for example:</p>
<p>Variables named with a prefix like Is, Has etc. with which by looking at the name is obvious that are booleans I use:</p>
<pre><code>if(IsSomething)
</code></pre>
<p>but if I have variables that do not have such a prefix I like to use</p>
<pre><code>if(Something == true)
</code></pre>
<p>Which ever form you use, you should decide based on the programing language you use it in. The meaning of</p>
<pre><code>if(Something) and if(Something == true)
</code></pre>
<p>can have very different meaning in different programing languages.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/1575864#15758640Answer by Kyle Hodgson for Should I use `!IsGood` or `IsGood == false`?Kyle Hodgson2009-10-16T00:33:24Z2009-10-16T00:33:24Z<p>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:</p>
<pre><code>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...
</code></pre>
<p>This drives me crazy, which is partially why I've developed a habit of doing things the other way round:</p>
<pre><code>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);
</code></pre>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/1575894#15758940Answer by Oscar Reyes for Should I use `!IsGood` or `IsGood == false`?Oscar Reyes2009-10-16T00:41:57Z2009-10-16T00:41:57Z<p>I would </p>
<pre><code>if ( isGood ) {
doSomething();
</code></pre>
<p>}</p>
<p>and</p>
<pre><code>if( isNotGood ) {
doSomethngElse();
}
</code></pre>
<p>Reads better.</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/1651254#16512540Answer by jon hanson for Should I use `!IsGood` or `IsGood == false`?jon hanson2009-10-30T17:33:46Z2009-10-30T17:33:46Z<p>If you really think you need:</p>
<pre><code>if (Flag == true)
</code></pre>
<p>then since the conditional expression is itself boolean you probably want to expand it to:</p>
<pre><code>if ((Flag == true) == true)
</code></pre>
<p>and so on. How many more nails does this coffin need?</p>
http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false/1651349#16513490Answer by Tim for Should I use `!IsGood` or `IsGood == false`?Tim2009-10-30T17:51:31Z2009-10-30T17:51:31Z<p>If you happen to be working in perl you have the option of</p>
<pre><code>unless($isGood)
</code></pre>