System.out.println(4 | 3);
The output is 7. It does addition up to 3 numbers, but how does this work? What is the syntax?
The output is 7. It does addition up to 3 numbers, but how does this work? What is the syntax? |
|||||
|
|
Binary OR
It doesn't always mean addition
|
|||
|
|
|
That's because
So the result is 7. If you want more details on bitwise operators, read: Bitwise and Bit Shift Operators. |
||||
|
|
|
It's doing a binary OR operation
|
|||
|
|
|
What are you trying to do? What you are doing is a binary or of two numbers:
|
|||
|
|
Its a bitwise OR operator. Explanation -
|
|||
|
|