vote up 7 vote down star
1

Title says it all. It's been discussed for other languages, but I haven't seen it for Java yet.

flag

Most people forget that | is a non-short-circuiting boolean operator in addition to being a bitwise operator. – John Meagher Sep 18 '08 at 20:47
Details on the difference are in the JLS. See java.sun.com/docs/books/… – John Meagher Sep 18 '08 at 20:57

12 Answers

vote up 24 vote down check

'|' does not do short-circuit evaluation in boolean expressions. '||' will stop evaluating if the first operand is true, but '|' won't.

In addition, '|' can be used to perform the bitwise-OR operation on byte/short/int/long values. '||' cannot.

link|flag
Provide a complete answer and I'll accept it. So far you're the first to pick this aspect of it up. – John Meagher Sep 18 '08 at 20:42
Missing the bitwise aspect of | – John Meagher Sep 18 '08 at 20:44
Damn, I'm out of votes today, I'll come back and up-vote this. – John Meagher Sep 18 '08 at 20:49
Cool, my first accepted answer. Thanks! :D – mmyers Sep 18 '08 at 20:51
vote up 0 vote down

In Java, a big difference is the type of the result and the values used with it. The logical OR operator | only takes integer types and returns an integer type. This means that it cannot be used as a condition in a if statement without adding a compare operation too.

|| takes only boolean types and returns a boolean, so it cannot be used for bit manipulation.

This type-safety makes it clear when each is appropriate unlike in C where there is no distinct boolean type.

link|flag
vote up 0 vote down

a | b: evaluate b in any case

a || b: evaluate b only if a evaluates to true

link|flag
vote up -1 vote down

|| returns a boolean value by OR'ing two values (Thats why its known as a LOGICAL or)

IE:

if (A || B)

Would return true if either A or B is true, or false if they are both false.

| is an operator that performs a bitwise operation on two values. To better understand bitwise operations, you can read here:

http://en.wikipedia.org/wiki/Bitwise_operation

link|flag
vote up 4 vote down

In Addition to the fact that | is a bitwise-operator: || is a short-circuit operator - when one element is false, it will not check the others.

 if(something || someotherthing)
 if(something | someotherthing)

if something is TRUE, || will not evaluate someotherthing, while | will do. If the variables in your if-statements are actually function calls, using || is possibly saving a lot of performance.

link|flag
Why would you ever use | in an if statement. || is boolean, | is not, | would only be boolean if your already working on two boolean values. – FlySwat Sep 18 '08 at 20:44
This is the first answer to get it all. – John Meagher Sep 18 '08 at 20:46
This answer is incorrect. If something is FALSE, both operators will go on to the next operand. The difference arises only when the first operand is true. – mmyers Sep 18 '08 at 20:47
To bad it has an absolutely ridiculous example. – FlySwat Sep 18 '08 at 20:47
I have no idea why anyone would use | or & in an if-statement for simple boolean comparison, but it's perfectly legal, and i've actually seen examples of that when I started learning programming. – Michael Stum Sep 18 '08 at 20:47
show 4 more comments
vote up 6 vote down

|| is the logical or operator while | is the bitwise or operator.

boolean a = true;
boolean b = false;

if (a || b) {
}

int a = 0x0001;
a = a | 0x0002;
link|flag
Missing that | is also a non-short-circuiting boolean operator. – John Meagher Sep 18 '08 at 20:51
vote up 0 vote down

| is a bitwise operator. || is a logical operator.

One will take two bits and or them.

One will determine truth (this OR that) If this is true or that is true, then the answer is true.

Oh, and dang people answer these questions fast.

link|flag
vote up 0 vote down

Take a look at:

http://java.sun.com/docs/books/tutorial/java/nutsandbolts/operators.html

| is bitwise inclusive OR

|| is logical OR

link|flag
Missing that | is also a non-short-circuiting boolean operator. – John Meagher Sep 18 '08 at 20:54
vote up 0 vote down

Java operators

| is bitwise or, || is logical or.

link|flag
vote up 0 vote down

|| is a logical or and | is a bit-wise or.

link|flag
vote up 0 vote down

| = bitwise or, || = logic or

link|flag
Missing that | is also a non-short-circuiting boolean operator. – John Meagher Sep 18 '08 at 20:56
vote up 2 vote down
| is the binary or operator

|| is the logic or operator
link|flag
Missing that | is also a non-short-circuiting boolean operator. – John Meagher Sep 18 '08 at 20:52

Your Answer

Get an OpenID
or

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