Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
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?

share|improve this question
So many duplicate answers.. – Steve Kuo Sep 14 '12 at 17:15
And each with its own illustration, haha – Andrew Latham Sep 14 '12 at 18:35

6 Answers

up vote 6 down vote accepted

Binary OR

  3 = 011
  4 = 100
  ----------
3|4 = 111 = 7

It doesn't always mean addition

  2 = 10
  2 = 10
2|2 = 10 = 2
share|improve this answer

That's because | is a bitwise OR

100    4
011    3
---
111    7

So the result is 7.

If you want more details on bitwise operators, read: Bitwise and Bit Shift Operators.

share|improve this answer

It's doing a binary OR operation

0100    - this is a 4
0011    - this is a 3
 |
0111    - result is 7
share|improve this answer

What are you trying to do? What you are doing is a binary or of two numbers:

0b011 
 ||
0b100
 ==
0b111 -> 7.
share|improve this answer
System.out.println(4 | 3);

Its a bitwise OR operator. Explanation -

4->100
3->011
   ----
   111 ->7
share|improve this answer
 3 =  0011
 4 =  0100
 |_____|
    |
    V
   0111 
    |
    V
    7
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.