Given that : 0000000000000000000000000000000000000000000000000000000000000001 = 1
What method would you use to determine if the the bit that represents 2^x is a 1 or 0 ?
|
4
|
|||||||||
|
|
|
I'd use:
(You may be able to get away with fewer brackets, but I never remember the precedence of bitwise operations.) |
||||||||||||||||||||
|
|
|
For the
|
||||||
|
|
|
The value of the 2^x bit is "variable & (1 << x)" |
||
|
|
|
Bit shifting right by x and checking the lowest bit. |
||
|
|
|
|
You can also use
EDIT: the difference between " In that particular case, with " If you prefer to have a 0 in that case, you can use the " So, " |
|||
|
|
|
|
Another alternative:
|
||||||||||||
|
|
|
I wonder if:
.. is better because it doesn't matter whether value is long or not, or if its worse because it's less obvious. Tom Hawtin - tackline Jul 7 at 14:16 |
|||
|
|
|
You might want to check out BitSet: http://java.sun.com/javase/6/docs/api/java/util/BitSet.html |
||
|
|
|
|
Eliminate the bitshifting and its intricacies and use a LUT for the right |
||
|
|