vote up 0 vote down star

Here is an easy question.

How does the industry refer to storing mulitple boolean value state in one integer?

The SetWindowPos api is an example.

SWP_NOSIZE         DEFINE 1
SWP_NOMOVE         DEFINE 2
SWP_NOZORDER       DEFINE 4
SWP_NOREDRAW       DEFINE 8
SWP_NOACTIVATE     DEFINE 16

If the integer is 11 then 1, 2 and 8 (SWP_NOSIZE, SWP_NOMOVE and SWP_NOREDRAW) are on.

What is the buzz word for this pattern?

flag

52% accept rate

5 Answers

vote up 11 vote down check

a bit field

link|flag
+1 Nothing more, nothing less. – Magnus Skog Jul 3 at 16:53
Except not hyphenated. – Nosredna Jul 3 at 17:08
vote up 7 vote down

I have always called this "bit flags", since they are flags, and there is one flag per bit. This seems fairly standard, though I can't guarantee how standard...

link|flag
This is my preferred for the general case. "Bitfield" should only be used when the bits fit in a machine word (otherwise you have a "bit array"). – Nosredna Jul 3 at 17:09
I prefer "flags" too – azheglov Jul 3 at 17:25
fields is better because sometimes you pair up bits to hold 3-state and 4-state data (and larger combinations). – jmucchiello Jul 3 at 17:32
vote up 3 vote down

bitset or bit array

link|flag
vote up 1 vote down

I prefer "flags" too. This term is used consistently in many places where powers of 2 are ORed (to give one example, System.Reflection.BindingFlags in .NET, and there are many others).

The term "bit field" has a specific meaning, e.g. bit fields in C structs - but there is no such struct in the above example; the programmer chose to use an integer instead.

link|flag
vote up 0 vote down

I've always called it a "bit mask".

I used this technique several years ago for implementing a permission system and used the bit positions for rights. It blew up on us because we kept adding new permissions and the number got so large that math operations couldn't be performed anymore. Works great for simple stuff though.

link|flag

Your Answer

Get an OpenID
or

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