vote up 3 vote down star

I have four flags

Current = 0x1  
Past = 0x2  
Future = 0x4  
All = 0x7

Say I receive the two flags Past and Future (setFlags(PAST | FUTURE)). How can I tell if Past is in it? Likewise how can I tell that Current is not in it? That way I don't have to test for every possible combination.

flag

6 Answers

vote up 8 vote down check

If you want all bits in the test mask to match:

if((value & mask) == mask) {...}

If you want any single bit in the test mask to match:

if((value & mask) != 0) {...}

The difference is most apparent when you are testing a value for multiple things.

To test for exclusion:

if ((value & mask) == 0) { }
link|flag
Would you give an example with the ~? – Malfist Feb 9 at 21:48
Actually, might not be needed - updatd – Marc Gravell Feb 9 at 21:49
vote up -1 vote down

you could use AND on it and check if the result is the same as you and with?

link|flag
vote up 2 vote down
if ((flags & PAST) == PAST)
{
  // PAST is there
}

if ((flags & CURRENT) != CURRENT)
{
  // CURRENT is not there
}
link|flag
A shame it is wrong (doesn't compile)... in C# you need brackets around the (flags & CURRENT) – Marc Gravell Feb 9 at 21:42
@Marc Gravell, why would you post this comment and not edit the post for the guy? – Simucal Feb 13 at 16:52
vote up 0 vote down
(value & Current) == Current
link|flag
vote up 9 vote down

First of all - use enums with FlagAttribute. That's what it's for.

[Flags]
public enum Time
{
    None = 0
    Current = 1,
    Past = 2,
    Future = 4
    All = 7
}

Testing then is done like this:

if ( (x & Time.Past) != 0 )

Or this:

if ( (x & Time.Past) == Time.Past )

The latter will work better if "Past" was a combination of flags and you wanted to test them all.

Setting is like this:

x |= Time.Past;

Unsetting is like this:

x &= ~Time.Past;
link|flag
vote up 2 vote down

You may also want to add an extension method like this

  enum states {
     Current = 0x1,
     Past = 0x2,
     Future = 0x4,
     All = 0x7
  };

  static bool Is(this states current, states value) {
     return (current & value) == value;
  }

then you can do:

 if(state.Is(states.Past)) {
    // Past
 }
link|flag

Your Answer

Get an OpenID
or

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