vote up 4 vote down star
1

Of the two methods below, which do you prefer to read?
Is there another (better?) way to check if a flag is set?

 bool CheckFlag(FooFlag fooFlag)
 {
      return fooFlag == (this.Foo & fooFlag);
 }

And

 bool CheckFlag(FooFlag fooFlag)
 {
      return (this.Foo & fooFlag) != 0;
 }


Please vote up the method you prefer.

flag

76% accept rate

6 Answers

vote up 8 vote down check

The two expressions do different things (if fooFlag has more than one bit set), so which one is better really depends on the behavior you want:

fooFlag == (this.Foo & fooFlag) // result is true iff all bits in fooFlag are set


(this.Foo & fooFlag) != 0       // result is true if any bits in fooFlag are set
link|flag
Thanks! I guess I was only looking at it one way. ie, "Is my bit set" I guess it could be helpful to know if "Any" bit is set as well! – Nescio Oct 15 '08 at 13:52
vote up 5 vote down
bool CheckFlag(FooFlag fooFlag)
{
    return fooFlag == (this.Foo & fooFlag);
}
link|flag
vote up 3 vote down

i prefer the first one because it's more readable.

link|flag
vote up 2 vote down
bool CheckFlag(FooFlag fooFlag)
{
    return (this.Foo & fooFlag) != 0;
}
link|flag
vote up 1 vote down

I prefer the first one. I use !=0 sparingly in boolean expressions.

link|flag
vote up -3 vote down

I'm a positive thinker:

bool CheckFlag(FooFlag fooFlag)
{
  return this.Foo & fooFlag == 1;
}
link|flag
What if FooFlag's value is 2? – Chris Marasti-Georg Oct 15 '08 at 13:39
He said he is a positive thinker :) – leppie Oct 15 '08 at 13:42
I stand corrected - thinking before writing is helpful ;) – Phil Reif Oct 15 '08 at 13:45

Your Answer

Get an OpenID
or

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