vote up 3 vote down star
4

Given that : 0000000000000000000000000000000000000000000000000000000000000001 = 1

What method would you use to determine if the the bit that represents 2^x is a 1 or 0 ?

flag

Just curious: am I right to assume that the "Given that [..] = 1" is in fact not relevant for the question? – Arjan van Bentem Jul 7 at 14:10
@Arjan: It is only useful as a point of reference if the person who answers the question wants to detail what happens to the bits during bitshifting operations. – _ande_turner_ Jul 7 at 14:45
Why there is a bounty for this question? I guess it was already VERY WELL answered from the minute it was opened. – Havenard Aug 31 at 4:26
@Havenard: Troll Elsewhere. – _ande_turner_ Aug 31 at 10:54

9 Answers

vote up 35 vote down check

I'd use:

if ((value & (1L << x)) != 0)
{
   // The bit was set
}

(You may be able to get away with fewer brackets, but I never remember the precedence of bitwise operations.)

link|flag
1  
you can remove the "!=0" because a non zero value is always true – ThibThib Jul 7 at 13:47
17  
That depends on the language. In java that isn't true. – harmanjd Jul 7 at 13:51
8  
That should be 1L, or (1 << 32) ends up with the same value as (1 << 0) – Matt Kane Jul 7 at 13:52
2  
@ThibThib nothing strange about it. Please don't post stupid anti Java flame bait. – amischiefr Jul 7 at 14:04
7  
I wonder if ((value>>>x) & 1) != 0 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
show 5 more comments
vote up 3 vote down

For the nth LSB (least significant bit), the following should work:

bool isSet = (value & (1 << n)) != 0;
link|flag
4  
That should be 1L, or (1 << 32) ends up with the same value as (1 << 0) – Matt Kane Jul 7 at 13:55
And boolean not bool. – Tom Hawtin - tackline Aug 26 at 1:23
vote up 1 vote down

The value of the 2^x bit is "variable & (1 << x)"

link|flag
As Matt Kane said in identical solutions: That should be 1L, or (1 << 32) ends up with the same value as (1 << 0) – drvdijk Jul 7 at 13:59
vote up 2 vote down

Bit shifting right by x and checking the lowest bit.

link|flag
vote up 7 vote down

You can also use

bool isSet = ((value>>x) & 1) != 0;

EDIT: the difference between "(value>>x) & 1" and "value & (1<<x)" relies on the behavior when x is greater than the size of the type of "value" (32 in your case).

In that particular case, with "(value>>x) & 1" you will have the sign of value, whereas you get a 0 with "value & (1<<x)" (it is sometimes useful to get the bit sign if x is too large).

If you prefer to have a 0 in that case, you can use the ">>>" operator, instead if ">>"

So, "((value>>>x) & 1) != 0" and "(value & (1<<x)) != 0" are completely equivalent

link|flag
vote up 36 vote down

Another alternative:

if (BigInteger.valueOf(value).testBit(x)) {
    // ...
}
link|flag
7  
+1 for using code that is understandable by future maintainers – cherouvim Aug 28 at 5:58
1  
Not a very good solution if this code is going to be called often. You're replacing a one-line alternative with a one line alternative, and the bit shifts really aren't that hard. – wds Aug 28 at 7:32
2  
Length of line != readability of line, wds. You might be right that the previous solution is more efficient, but the difference is likely marginal, especially if testBit() gets inlined. – WCWedin Aug 29 at 16:05
vote up 5 vote down

I wonder if:

  if (((value >>> x) & 1) != 0) {

  }

.. 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

link|flag
I think it's better because there is less potential for errors - and if you think it isn't obvious, you can always extract the test into an appropriately named function (boolean isBitSet(long value, int x) or so) – hjhill Aug 26 at 8:30
vote up 2 vote down

You might want to check out BitSet: http://java.sun.com/javase/6/docs/api/java/util/BitSet.html

link|flag
vote up 0 vote down

Eliminate the bitshifting and its intricacies and use a LUT for the right and operand.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.