So I've got this simple code in C.
if (flags & 4)
Now when I port the line to java:
if ((flags & 4) == 1)
It doesn't trigger. Whats the correct way to port the C code to Java? What am I doing wrong with the & operator?
|
So I've got this simple code in C.
Now when I port the line to java:
It doesn't trigger. Whats the correct way to port the C code to Java? What am I doing wrong with the & operator? |
|||
|
|
|
It should be
The reason for this is that in C anything that is not zero is considered |
|||
|
|
|
When you use bitwise and to "mask" all the bits except one, the result isn't going to be one, it's going to be the bit you checked for. |
|||
|
|