vote up 8 vote down star

Why doesn't func3 get executed in the program below? After func1, func2 doesn't need to get evaluated but for func3, shouldn't it?

if (func1() || func2() && func3()) {
        System.out.println("true");
    } else {
        System.out.println("false");
    }
}

public static boolean func1() {
    System.out.println("func1");
    return true;
}

public static boolean func2() {
    System.out.println("func2");
    return false;
}

public static boolean func3() {
    System.out.println("func3");
    return false;
}
flag

I believe not everyone is aware of short-circuit issue, in that case the edited version of the question might not interest the newbies even if they are looking for an answer regarding the logical && and || evaluation of Java. – ZiG May 12 at 13:52
4  
This raises the point that in any sort of non-trivial expression like that, it's a good idea to declare your intent with parentheses. So even if you intended (func1() || (func2() && func3()), you make it explicit and clear to programmers who come along later that your code is working as intended. – mtruesdell May 12 at 13:54

9 Answers

vote up 23 vote down check

You're using a short-circuited or. If the first argument is true, the entire expression is true.

It might help if I add the implicit parentheses that the compiler uses

Edit: As Chris Jester-Young noted, this is actually because logical operators have to left-to-right associativity:

if (func1() || (func2() && func3()))

After func1 returns, it becomes this:

if (true || (func2() && func3()))

After evaluating the short-circuited or, it becomes:

if (true)
link|flag
9  
For the avoidance of doubt, this is because && has higher precedence than ||. Associativity is, in both cases, left-to-right. – Chris Jester-Young May 12 at 13:26
3  
I mention this because otherwise this post would lead to the question of, why (A || (B && C)) as opposed to ((A || B) && C). – Chris Jester-Young May 12 at 13:29
2  
(It's important to night that it is precedence which is important here, no associativity doesn't get a look in. IMO, expressions such as a || b && c and a && b || c (which is `(a && b) || c) are confusing and the compiler should complain.) – Tom Hawtin - tackline May 12 at 13:31
vote up 4 vote down

Java functions are evaluated according to precedence rules

because "&&" is of higher precendence than "||", it is evaluated first because you did not have any brackets to set explicit precedence

so you expression of

(A || B && C)

which is

(T || F && F)

is bracketed as

(T || (F && F))

because of the precedence rules.

Since the compiler understands that if 'A == true' it doesn't need to bother evaluating the rest of the expression, it stops after evaluating A.

If you had bracketed ((A || B) && C) Then it would evaluate to false.

EDIT

Another way, as mentioned by other posters is to use "|" and "&" instead of "||" and "&&" because that stops the expression from shortcutting. However, because of the precedence rules, the end result will still be the same.

link|flag
vote up 3 vote down

Java short-circuits boolean expressions. That means that, once func1() is executed and returns true, the rest of that boolean doesn't matter since you are using an or operator. No matter what func2() && func3() evaluates to, the whole expression will evaluate to true. Thus, Java doesn't even bother evaluating the func2() or func3().

link|flag
vote up 2 vote down

You're using the shortcut-operators || and &&. These operators don't execute the rest of the expression, if the result is already defined. For || that means if the first expression is true and for && if the first expression is false.

If you want to execute all parts of the expression use | and & instead, that is not shortcut.

link|flag
vote up 2 vote down

Java uses Lazy evaluation.

Since Func1 always returns true, the entire expression MUST be true, so it shortcuts the rest of the expression.

true || (???)

and

false && (???)

will always shortcut.

To turn off shortcut evaluation, use | and & instead of || and &&

We can use this to good effect:

String s;
if (s != null && !s.equals("")) ...

Meaning that if s is null, we won't even have to try to call s.equals, and we won't end up throwing an NullPointerException

link|flag
It won't always shortcut. It's evaluating according to precedence rules. I don't have a java compiler handy, but I believe that (falsefunc() && true1() || true2()) will evaluate falsefunc() then true2(). – devinb May 12 at 13:38
Good Point. Added parentheses to correct it. – chris May 12 at 14:06
vote up 1 vote down

short answer: short-circuit evaluation

since func1() yelds true there is not need to continue evaluation since it is always true

link|flag
vote up 1 vote down

If function 1 always returns true, then Java doesn't need to evaluate the rest of the expression to determine that the whole expression will be true.

link|flag
vote up 0 vote down

If you want all functions to be executed you can drop the short-cut variants

if (func1() | func2() & func3()) {
link|flag

Your Answer

Get an OpenID
or

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