Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The bitwise operators are supposed to travel the variables and operate on the bit by bit. In the case of integers, longs, chars this makes sense. These variables can contain the full range of values enforced by their size.

In the case of booleans, however, a boolean can contain only two values. 1 = true or 0 = false. But the size of the boolean isn't defined. It can be as big as a byte or as small a bit.

So what's the effect of using a bitwise operator on a boolean? Does the JVM essentially translate it to a normal logical operator and move on? Does it treat the boolean as a single bit entity for the purpose of the operation? Or is the result undefined along with the size of a boolean?

share|improve this question
I think you can't use a bitwise operator on a boolean. Only on numbers. I'm sure ~ will not work, I don't know what about other operators. – Martijn Courteaux Nov 12 '09 at 18:05
2  
You can use some of them, we just discovered an | used in our legacy code. We're removing it, but this code compiled and worked. – Daniel Bingham Nov 12 '09 at 18:10
5  
Since one is short-circuiting and the other isn't (see mobrule's answer), before you change the | to || you may want to make sure the subsequent boolean expressions don't have any side-effects that the original programmer intended to always execute. – John M Gant Nov 12 '09 at 18:30

3 Answers

up vote 31 down vote accepted

The operators &, ^, and | are bitwise operators when the operands are primitive integral types. They are logical operators when the operands are boolean, and their behaviour in the latter case is specified. See the section 15.22.2 of the Java Language Specification for details.

share|improve this answer
6  
Specifically, & and ^ and | are the non-short-circuit logical boolean operators. – Ken Nov 12 '09 at 18:36
5  
Here's a direct link to the section mentioned above: docs.oracle.com/javase/specs/jls/se7/html/… – Andy Thomas-Cramer Jul 19 '12 at 20:36

Using the bitwise operator can circumvent short-circuiting behavior:

boolean b = booleanExpression1() && booleanExpression2();
boolean b = booleanExpression1() & booleanExpression2();

If booleanExpression1() evaluates to false, then
booleanExpression2() is not evaluated in the first case, and
booleanExpression2() (and whatever side-effects it may have) is evaluated in the second case,

share|improve this answer
Good thing to keep in mind, thanks! – Daniel Bingham Nov 12 '09 at 18:36
And the bitwise operation performs usually faster than the short-circuit one (provided the evaluation is simple) – rds Feb 24 at 16:12

Even if it will work you shouldn't do it. Language specs define bitwise operators only when both operands are of primitive integer types or both are of boolean type. I'd say for any other case the results are not defined:

http://java.sun.com/docs/books/jls/second_edition/html/expressions.doc.html#5228

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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