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.
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. |
|||||||||||||||
|
|
Check if bit N (starting from 0) is set:
There is no builtin function for this. |
|||||
|
|
I would just use a std::bitset if it's C++. Simple. Straight-forward. No chance for stupid errors.
or how about this silliness
|
||||
|
|
|
You can use a Bitset - http://www.cppreference.com/wiki/stl/bitset/start. |
|||
|
|
|
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:
|
|||
|
|
|
Yeah, I know I don't "have" to do it this way. But I usually write:
E.g.:
Amongst other things, this approach:
|
||||
|
|
|
There is, namely the _bittest intrinsic instruction. |
|||||||||||||||
|
|
Use std::bitset
|
|||||||||||
|
|
You could "simulate" shifting and masking: if((0x5e/(2*2*2))%2) ... |
|||||||||
|
|
For the low-level x86 specific solution use the x86 TEST opcode. Your compiler should turn _bittest into this though... |
|||
|
|
|
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 |
||||
|
i was trying to read a 32-bit integer which defined the flags for an object in PDFs and this wasn't working for me what fixed it was changing the define:
the operand & returns an integer with the flags that both have in 1, and it wasn't casting properly into boolean, this did the trick |
|||
|
|