int temp = 0x5E; // in binary 0b1011110.
Is there such a way to check if bit 3 in temp is 1 or 0 without bit shifting and masking.
Just want to know if there is some built in function for this, or am I forced to write one myself.
|
1
|
Is there such a way to check if bit 3 in temp is 1 or 0 without bit shifting and masking. Just want to know if there is some built in function for this, or am I forced to write one myself.
|
|||
|
|
|
|
In C, if you want to hide bit manipulation, you can write a macro:
and use it this way:
In C++, you can use std::bitset. |
||||||||||
|
|
|
For the low-level x86 specific solution use the x86 TEST opcode. Your compiler should turn _bittest into this though... |
||
|
|
|
|
Use std::bitset
|
||||||
|
|
|
I would just use a std::bitset if it's C++. Simple. Straight-forward. No chance for stupid errors.
or how about this silliness
|
|||
|
|
|
|
Yeah, I know I don't "have" to do it this way. But I usually write:
E.g.:
Amongst other things, this approach:
|
|||
|
|
|
|
if you just want a real hard coded way:
note this hw dependent and assumes this bit order 7654 3210 and var is 8 bit.
Results in: 1 0 1 0 |
||||||
|
|
|
According to this description of bit-fields, there is a method for defining and accessing fields directly. The example in this entry goes:
Also, there is a warning there:
|
||
|
|
|
|
There is, namely the _bittest intrinsic instruction. |
||||||||||
|
|
|
You could "simulate" shifting and masking: if((0x5e/(2*2*2))%2) ... |
||||||
|
|
|
Check if bit N (starting from 0) is set:
There is no builtin function for this. |
||||
|
|
|
You can use a Bitset - http://www.cppreference.com/wiki/stl/bitset/start. |
||
|
|