Click here to Skip to main content
15,878,945 members
Articles / Programming Languages / C

The Beginner's Guide to Using Enum Flags

Rate me:
Please Sign up or sign in to vote.
3.54/5 (97 votes)
10 Jan 2009CPOL6 min read 310.5K   608   93   49
An article explaining the rudiments of how to deal with Flags in C++

Contents

Introduction

Once I was roaming the Visual C++ forum (again), I had to face the fact that bitwise operations, and binary in general, are rarely in beginner's common sense. After having pained my fingers to write a very long answer to that innocent person, it became obvious that I had to share this obfuscated knowledge with the community through this article.

This is obviously a beginners article, but if you want to get deeper knowledge about the C/C++ bitwise operators cover, you can read the very complete article, An introduction to bitwise operators by PJ Arends. You can also go into a very complex (but effective) analysis of bit hacking with the article, Bit Twiddling Hacks By Sean Eron Anderson.

I'm going to present in the most complete way that I can about what we can do with bitwise operators, flags and all that binary stuff.

The Facts

One of the places where we most find the use for this is certainly when a library provides a set of enumerations and when functions use DWORD as a flags container. Let's take for that article the example of an enum which defines some styles:

C++
enum {
    STYLE1 =   1,
    STYLE2 =   2,
    STYLE3 =   4,
    STYLE4 =   8,
    STYLE5 =  16,
    STYLE6 =  32,
    STYLE7 =  64,
    STYLE8 = 128
};
OR
C++
enum {
    STYLE1 = 0x1,
    STYLE2 = 0x2,
    STYLE3 = 0x4,
    STYLE4 = 0x8,
    STYLE5 = 0x10,
    STYLE6 = 0x20,
    STYLE7 = 0x40,
    STYLE8 = 0x80
};

As we can see, these constants are all powers of 2. To understand why these constants are chosen, we must go in binary representation:

  1 -> 0b 00000000 00000000 00000000 00000001
  2 -> 0b 00000000 00000000 00000000 00000010
  4 -> 0b 00000000 00000000 00000000 00000100
  8 -> 0b 00000000 00000000 00000000 00001000
 16 -> 0b 00000000 00000000 00000000 00010000
 32 -> 0b 00000000 00000000 00000000 00100000
 64 -> 0b 00000000 00000000 00000000 01000000
128 -> 0b 00000000 00000000 00000000 10000000

Notice that for all of these values, only one bit is set at a time, all the others are equal to 0. You now can see a high level of interest appearing in this, which is that each bit is used as a flag for a functionality (here, each bit represents a style). We can now imagine a way to mix the flags together in one variable, to avoid using as many booleans as we need flags. Consider the following example :

0b 00000000 00000000 00000000 00100101

Flags of Style1, Style3 and Style6 are set

The Main Operators

We face a problem now. C++ doesn't handle binary directly. We have to use bitwise operators instead. There are 3 atomic bitwise operators to know, presented by ascending order of priority : OR (|), AND (&) and NOT (~). Here are their behaviors:

 x y   |        x y   &        x   ~
---------      ---------      -------
 0 0   0        0 0   0        0   1
 0 1   1        0 1   0        1   0
 1 0   1        1 0   0
 1 1   1        1 1   1

Knowing this, we can use these operators to build some mixes such as the ones presented above.
In the case of the instruction STYLE1 | STYLE3 | STYLE6, we OR the constants like this:

 0b 00000000 00000000 00000000 00000001     <- STYLE1
 0b 00000000 00000000 00000000 00000100     <- STYLE3
 0b 00000000 00000000 00000000 00100000     <- STYLE6
-----------------------------------------------
 0b 00000000 00000000 00000000 00100101     <- STYLE1 | STYLE3 | STYLE6

We can see that the bitwise OR operator is pretty much like the addition (+) operator. However, you have to be very careful if you wished to use + instead or |. The reason is simple: adding 1 + 1 resolves into 0 (plus one carry over 1). You won't see any problem if all the constants are strictly different though, but I won't go deeper as it is a bad practice to use other than bitwise operators when processing binary operations.

DWORD in Action

Commonly, such mixes stick to the DWORD type. However, this is not a must as we can do this with any integer types (char, short, int, long...). A DWORD is an unsigned 32 bits integer (like those used in the binary representations of this article). Let's imagine the case when we have such a DWORD constructed in a function, and passed to another in parameter. How can the called function know which bits are set, and which are not? Easy... Follow me!

Say we want to know if the bit of STYLE8 is set in the DWORD passed in parameter. We must have a mask which we will call the AND parameter. In practice, the mask is the same as the constant we are about to test, so there's no additional code to create such a mask:

DWORD parameter   ->   0b 00000000 00000000 00000000 00100101
STYLE8 mask       ->   0b 00000000 00000000 00000000 10000000
                      ----------------------------------------
Bitwise AND       ->   0b 00000000 00000000 00000000 00000000     <- 0x00000000



DWORD parameter   ->   0b 00000000 00000000 00000000 10100101
STYLE8 mask       ->   0b 00000000 00000000 00000000 10000000
                      ----------------------------------------
Bitwise AND       ->   0b 00000000 00000000 00000000 10000000     <- STYLE8

If the AND operation returns 0, then, the bits were not set, otherwise, you get the mask you applied.

OK, now, in practice, here is how you'll often see it:

C++
void SetStyles(DWORD dwStyles) {
    if ((STYLE1 & dwStyles) == STYLE1) {
        //Apply style 1
    }
    else if ((STYLE2 & dwStyles) == STYLE2) {
        //Apply style 2
    }
    else if ((STYLE3 & dwStyles) == STYLE3) {
        //Apply style 3
    }
    //etc...
}

I didn't present the third operator NOT (~) yet. It is generally used when you have a set of bits, in which some are set and some aren't, and where you'd like to remove one of them. The sample of code below exposes how this can be done:

C++
void RemoveStyle5 (DWORD& dwStyles) {
    if ((STYLE5 & dwStyles) == STYLE5) {
        dwStyles = dwStyles & ~STYLE5;
    }
}

I didn't mention the XOR ( ^ ) operator yet. The reason why it comes last is for the only reason that this operator is not atomic; that means that we can reproduce its behavior with the other operators presented already:

#define XOR(a,b) (((a) & ~(b)) | ((b) & ~(a)))

Anyway, this operator can be used to easily switch one bit :

C++
void SwitchStyle5 (DWORD& dwStyles) {
    dwStyles = dwStyles ^ STYLE5;
}

The Other Operators

Now, to perfect your sharpen skills on bits handling, there are few other operators you have to know to be unbeatable: the shift operators. Those can be recognized like this : << (left shifting, follow the arrows), >> (guess what, this is a right shifting).

What a shifting operator is moving the bits of n positions to the right or to the left. The "space" made by the movement is padded with zeros, and the bits pushed over the limit of the memory area are lost.

Let's take an example:

C++
BYTE dwStyle = STYLE1 | STYLE3 | STYLE6;    //    [00100101]000
                                                      <-
dwStyle = dwStyle << 3;                     // <s>001</s>[00101000] 
 
BYTE dwStyle = STYLE1 | STYLE3 | STYLE6;    // 000[00100101]
                                                      ->
dwStyle = dwStyle >> 3;                     //    [00000100]<s>101</s>

"But" I hear you say, "what is that for" ?". Well, there are tons of applications which I don't particularly have in mind right now, but trust me, when you need it, be happy it's there.

Anyway, two funny uses of such operators I can think of is the division and the multiplication of an integer by 2. Check this:

C++
char i = 127;    // 0b01111111 ( = 127)
i = i >> 1;      // 0b00111111 ( = 63)
i = i << 1;      // 0b01111110 ( = 126)

Shifting one bit right, then one bit left gives a different result from the beginning. That's because as we just saw, the "overflown" bits are lost, and the newly inserted ones are set to 0. But let's look closer. This is working anyway because we are working on integers. That is, dividing an odd number will not give a float (we don't care about the remaining 0.5).

Here, 127 / 2 should be 63.5, so it gives 63, due to the truncation.
63 * 2 = 126, isn't it what we want ?! :-)

Now we've seen all the useful operators, just know that all of them have their own assignment operator.

C++
dwStyle  &= 0x2     -->     dwStyle = dwStyle &  0x2
dwStyle  |= 0x2     -->     dwStyle = dwStyle |  0x2
dwStyle  ^= 0x2     -->     dwStyle = dwStyle ^  0x2
dwStyle <<= 0x2     -->     dwStyle = dwStyle << 0x2
dwStyle >>= 0x2     -->     dwStyle = dwStyle >> 0x2

A Funny Example

Thanks to Randor in the VC++ forum, here is a nice example of what is possible to do with such operators (Credit for the discovery of this little neat trick below goes to Sean Anderson at stanford university).

"How is it possible to reverse the bits of an integer, say from 11010001 to 10001011 ?"

C++
BYTE b = 139;  // 0b10001011
b = ((b * 0x0802LU & 0x22110LU) | (b * 0x8020LU & 0x88440LU)) * 0x10101LU >> 16;

"Wowwww, how is this working man ?!"

C++
DWORD iTmp = 0;
BYTE b = 139;               // 00000000 00000000 00000000 10001011
DWORD c = (b * 0x0802LU);   // 00000000 00000100 01011001 00010110
c &= 0x22110LU;             // 00000000 00000000 00000001 00010000
DWORD d = (b * 0x8020LU);   // 00000000 01000101 10010001 01100000
d &= 0x88440LU;             // 00000000 00000000 10000000 01000000
iTmp = (c | d);             // 00000000 00000000 10000001 01010000
iTmp = iTmp * 0x10101LU;    // 10000001 11010001 11010001 01010000
iTmp >>= 16;                // 00000000 00000000 10000001 11010001
b = iTmp;                   // 00000000 00000000 00000000 11010001

Conclusion

Well, here we are then. If you came here to understand these binary operations, I hope that I helped you in your way. If you came to see what was going on here, then don't hesitate to point my mistakes if any, so that I can fix them.

Links

The following links are for complimentary knowledge, if you like to go deeper in bitwise handling:

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Accenture Technology Solutions
France France

Toxcct is an electronics guy who felt in love with programming at the age of 10 when he discovered C to play with Texas-Instruments calculators.

Few years later, he discovered "The C++ Language" from Bjarne Stroustrup ; a true transformation in his life.

Now, toxcct is experiencing the Web by developing Siebel CRM Applications for a living. He also respects very much the Web Standards (YES, a HTML/CSS code MUST validate !), and plays around with HTML/CSS/Javascript/Ajax/PHP and such.

_____

After four years of services as a Codeproject MVP, toxcct is now taking some distance as he doesn't like how things are going on the forums. he particularly doesn't accept how some totally ignorant people got the MVP Reward by only being arrogant and insulting while replying on the technical forums.



Comments and Discussions

 
GeneralRe: Flag Count Formula? Pin
Andre xxxxxxx25-Apr-06 1:05
Andre xxxxxxx25-Apr-06 1:05 
GeneralRe: Flag Count Formula? Pin
Alexandre Nikolov25-Apr-06 1:20
Alexandre Nikolov25-Apr-06 1:20 
GeneralRe: Flag Count Formula? Pin
toxcct25-Apr-06 21:34
toxcct25-Apr-06 21:34 
GeneralRe: Flag Count Formula? Pin
CPallini18-Dec-07 4:05
mveCPallini18-Dec-07 4:05 
AnswerRe: Flag Count Formula? Pin
AspDotNetDev12-Jan-09 21:14
protectorAspDotNetDev12-Jan-09 21:14 
GeneralGood article, but... Pin
Steve Folly11-Apr-06 20:04
Steve Folly11-Apr-06 20:04 
GeneralRe: Good article, but... Pin
toxcct11-Apr-06 21:47
toxcct11-Apr-06 21:47 
GeneralAn alternative definition... Pin
Jun Du10-Apr-06 9:01
Jun Du10-Apr-06 9:01 
After reading this article, one can come up with the following definition, which insures bit uniqueness in the byte:

enum
{
STYLE1 = 0x00000001,
STYLE2 = 0x00000010,
STYLE3 = 0x00000100,
STYLE4 = 0x00001000,
STYLE5 = 0x00010000,
STYLE6 = 0x00100000,
STYLE7 = 0x01000000,
STYLE8 = 0x10000000
};

This format also gives you the flexibility of defining any combined styles (deliberate non-uniqueness), which is useful sometimes:

enum
{
STYLE1 = 0x00000001,
STYLE2 = 0x00000010,
STYLE3 = 0x00000100,
STYLE4 = 0x00001000,
STYLE5 = 0x00010000,
STYLE6 = 0x00100000,
STYLE7 = 0x01000000,
STYLE8 = 0x10000000,
ALLSTYLES = 0x11111111
};

Win32 API uses this format a lot.
GeneralRe: An alternative definition... Pin
toxcct10-Apr-06 21:30
toxcct10-Apr-06 21:30 
GeneralRe: An alternative definition... Pin
Pravin Wagh11-Apr-06 0:16
Pravin Wagh11-Apr-06 0:16 
GeneralRe: An alternative definition... Pin
John M. Drescher13-Apr-06 4:20
John M. Drescher13-Apr-06 4:20 
GeneralRe: An alternative definition... (simpler) Pin
Robert Bielik11-Apr-06 9:34
Robert Bielik11-Apr-06 9:34 
AnswerRe: An alternative definition... (simpler) Pin
Roland Pibinger24-Apr-06 10:11
Roland Pibinger24-Apr-06 10:11 
GeneralRe: An alternative definition... Pin
manos5-Mar-07 21:12
professionalmanos5-Mar-07 21:12 
GeneralNice, a few things... Pin
ricecake10-Apr-06 4:18
ricecake10-Apr-06 4:18 
GeneralRe: Nice, a few things... Pin
toxcct10-Apr-06 4:27
toxcct10-Apr-06 4:27 
GeneralRe: Nice, a few things... Pin
JHS10-Apr-06 9:23
JHS10-Apr-06 9:23 
GeneralRe: Nice, a few things... Pin
Daniel Fruzynski17-Apr-06 23:13
Daniel Fruzynski17-Apr-06 23:13 
GeneralReally Cool Pin
Clickok10-Apr-06 2:18
Clickok10-Apr-06 2:18 
GeneralRe: Really Cool Pin
toxcct10-Apr-06 4:30
toxcct10-Apr-06 4:30 
General[Message Deleted] Pin
ddmcr10-Apr-06 0:22
ddmcr10-Apr-06 0:22 
GeneralRe: Nice Pin
toxcct10-Apr-06 0:35
toxcct10-Apr-06 0:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.