I'm trying to know the states of different bits over a char
lets say I've:
char a = 11 //00001011 in binary
How can I retrieve bit number 5 which is currently 0 and cast it to a bool variable? And How can I set it?
|
I'm trying to know the states of different bits over a char lets say I've:
How can I retrieve bit number 5 which is currently 0 and cast it to a bool variable? And How can I set it? |
|||||
|
|
As you've noted:
Since you said the
You want to test the 5th bit, that means you need a mask that accesses the fifth bit, here's some masks:
To set your bit you need a bit-wise OR (|)
To test the bit we can use the bit-wise AND (&)
*it was pointed out that this is a 1-based indexing as opposed to the more typical 0-based indexing. Which is true. Based on the description I chose to read the question as "bit number 5" meaning typical (human) based counting of 1, 2, 3, 4, etc out of 8-bits. If you'd rather use a 0-based indexing, this is no problem, just "shift" the same logic by one, the mask for the "5th" bit in 0-based indexing is When talking about bits it's good to note which is the least significant bit, and 0 or 1 based to be totally clear. |
||||
|
|
|
You can use some bitwise operators:
Or, more generally:
Missed the setting part:
|
|||||||||||
|
|
Counting from 0 being the rightmost bit: To test it:
To set (or clear) bit
|
||||
|
|
|
You mention bit number 5, I believe you're looking at the 5th least-significant bit. You've also asked about how to set a bit at a specific position. For that, use bitwise OR -
As has already been answered, test the bit using bitwise AND -
Often you'll use a positional flag like
For more information, the wikipedia article on bitwise operation is pretty good. |
||||
|
|
|
Well, you can use this set of functions to get and set the bit states, I suppose:
Still I wonder why do you need to use this, and not bitsets. ) |
||||
|
|