consider this example please
int i=11, j=5;
boolean b=true, c=false;
System.out.println(b&c); // --> output=false
System.out.println(i&j); // --> output=1
How bit wise and operator is working on boolean variables ?
|
consider this example please
How bit wise and operator is working on boolean variables ? |
||||
|
|
There are no bitwise operations on
Note that the same operators are used for bitwise operations, but those only apply when both operands are of a type that is convertible to an integral type (i.e. Since this post led to some ... spirited discussion, I think I'll clarify my insistence on the difference between "bitwise" and "logical" operations. First of: Yes, at some level, the two operations will work exactly the same, except for the size of their input (which might even be identical, due to optimizations). But, there are at lest 3 levels here:
|
|||||||||||||||
|
|
For boolean type: The operators The operators You also have How does this work in the JVM and how does it compare with bit-wise integer operations? At the byte code level, FALSE has the value 0 and TRUE has the value. From the
In this code it is defining TRUE as If you map |
|||||||||
|
|
For your case, I believe the only difference b/w Mostly relevant if you have a costly method in your expression. |
|||
|
|
|
The first operation you do - TRUE & FALSE is taken as 1 & 0, which is false. The second operation - 11 & 5 is taken as 1011 & 0101 (the binary values), which is 0001 when anded. |
|||
|
|