Fortsätt till huvudinnehåll

C# Enum as bit field

Bit field enum

Whenever you wish to express combinations of properties of an object, bit fields are a good way to accomplish this. As a simple example, consider a file in the file system. It can be Readable, Writable, Hidden or a combination these.

The different attributes can be defined as an enum:

[Flags]
public enum FileAttribute
{
  None      = 0b0000;
  Readable  = 0b0001;
  Writeable = 0b0010;
  Hidden    = 0b0100;
}

To indicate that this enum is expected to be used as a bit field I have defined it with the FlagsAttribute. It is important to understand that the FlagsAttribute does nothing more than making some changes to how the ToString method of the enum works, making it possible to print out all flags. It does not introduce any validation or special treatment of the enum in any other way.

I have defined the values of the different fields of the enum using binary representation, this should make it even more clear that this is a bit field and which bit that maps to which property.

Finally, it is very important that the value 0 (zero) represents None. This has to do with how the checking if different bits are set or not is performed. Always include a value of zero that represents None or Nothing.

Setting, checking, and clearing bits

The bit field enum is designed to work with bitwise OR, AND, and XOR operations. To use the code above, let's create a class File that has a FileAttribute property.

public class File
{
  public FileAttribute Attributes { get; set; }
  ...
}

Now, to set the Readable bit, simply use the bitwise OR operator, |

var f = new File();
f.Attributes |= FileAttribute.Readable;

And to later on check if the Readable bit is set, either use bitwise AND, or the HasFlag extension method.

var isReadable = (f.Attributes & FileAttribute.Readable) == FileAttribute.Readable;
// Alternatively
var isReadable = f.Attributes.HasFlag(FileAttribute.Readable));

To clear the Readable bit you should use the bitwise complement operator in combination with bitwise AND.

f.Attributes &= ~FileAttribute.Readable;

NOTE: When looking through the C# programming guide on Enumeration types I noticed that Microsoft uses bitwise XOR to clear the bit in their example. This is bad practice since bitwise XOR will invert the bit, not clear it.

Now, with the examples above it might just look difficult using a bit field. The beauty of it however shows when you start combining the attributes. For example, to set a File to both Readable and Writeable, just include both flags in the set operation.

f.Attributes |= FileAttribute.Readable | FileAttribute.Writeable;

More information on how to use enumerations as bit flags can be found in additional resources listed below.

More resources

C# Programming Guide on Enumeration Types
The Bitwise complement operator
What does the [Flags] enum attribute mean in C#?

Kommentarer

Populära inlägg i den här bloggen

Does TDD really improve software quality?

I have asked myself this question several times, and searched for answers, without coming up with any clear answer. Therefore I have decided to go hard core TDD for a longer period of time (at least 6 months) to really evaluate the effects. There are several things that I find confusing when it comes to TDD. One example is what actually defines a unit test. What is a "unit" anyway? After reading a bit about it I found a text claiming that the "unit" is "a unit of work", i.e. something quite small. Like converting a string to UPPERCASE or splitting a string into an ['a','r', 'r', 'a', 'y'] of chars. This work is usually performed by a single call to a single method in a single, isolated, class. So, what does it mean that a class is isolated? Does it mean that it doesn't have any dependencies to other classes? NO! In the context of TDD it means that any dependencies are supplied by the test environment, for exa...

Codility tasks - Part I

I was recently faced with two codility tasks when applying for a job as an Embedded Software Engineer. For those of you who arn't familiar with Codility you can check out their website here:  www.codility.com Task one - Dominator The first task was called Dominator. The goal was to, given a std::vector of integers, find an integer that occurs in more than half of the positions in the vector. If no dominator was found -1 should be returned. My approach was to loop through the vector from the first to the last element, using a std::map to count the number of occurences of each integer. If the count ever reached above half the size of the vector I stopped and returned that integer and if I reached the end without finding a dominator I returned -1. So was that a good approach? Well, the reviewer at the company rated the solution as 'pretty ok'. His preferred solution was store the first integer in the array and set a counter to 1. Then loop through the remaining i...

Codility tasks - Part II

Now, the second codility task I was faced with was a bit tougher. The goal was to create a function that, given a vector of integers A and an integer K, returned the number of integer pairs in the vector that, when added, sums up to K. Let me give you an example. Assume that you are given a vector A = [0, -1, 3, 2, -5, 7] and K = 2. Possible combinations to get K are (0, 2), (-1, 3), (3, -1), (2, 0),  (-5, 7), and (7, -5). In other words, the function should return 6. Now, how did I solve this task? The first solution that came to mind involved nested for-loops. The outer loop picking one integer at the time from the vector and the inner loop adding the integer to the others one by one to see if the result is K. This solution works, but it does not scale well. Time complexity will be O(N**2) ,   something that for large vectors will result in very long execution times. My second approach was to use my old friend, the integer counter, and count all occurences of each...