Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There are two types of if statements in java - classic: if {} else {} and shorthand: exp ? value1 : value2. Is one faster than the other or are they the same?

statement:

int x;
if (expression) {
  x = 1;
} else {
  x = 2;
}

ternary operator:

int x = (expression) ? 1 : 2;
share|improve this question
23  
I'm guessing there's absolutely no difference. It's just syntax. Unless compilers are somewhat evil (or something else) and I'm wrong – sinelaw Jan 16 '11 at 16:58
4  
Did you (micro)benchmark it? Share the results. – BalusC Jan 16 '11 at 16:59
9  
Why the downvotes? This is a legitimate question (even if you think the answer is obvious) – finnw Jan 16 '11 at 17:02
7  
They don't exist for different speeds. They exist for different purposes. I'm sure you understand the difference between statements and expressions. Statements perform actions. Expressions produce values. if is for use in statements. ? is for use in expressions. – Mike Dunlavey Jan 16 '11 at 17:05
4  
Congrats, Ivo Wetzel, bmargulies, Henk Holterman, meagar, and Graviton, for being morons and shutting down another useful QUESTION/answer page for absolutely no good reason. SO should disallow closing of questions unless they're offensive or completely off topic. Oh well, good job "serving the SO community" by shutting down another exchange of information, guys. (If you really feel it's difficult to tell what's being asked here, seriously go back to 2nd grade, and learn English.) – Perce Jul 5 '12 at 5:02
show 8 more comments

closed as not a real question by Ivo Wetzel, bmargulies, Henk Holterman, meagar, Graviton Jan 19 '11 at 1:56

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

5 Answers

up vote 43 down vote accepted

There's only one type of "if" statement there. The other is a conditional expression. As to which will perform better: they could compile to the same bytecode, and I would expect them to behave identically - or so close that you definitely wouldn't want to choose one over the other in terms of performance.

Sometimes an if statement will be more readable, sometimes the conditional operator will be more readable. In particular, I would recommend using the conditional operator when the two operands are simple and side-effect-free, whereas if the main purpose of the two branches is their side-effects, I'd probably use an if statement.

Here's a sample program and bytecode:

public class Test {
    public static void main(String[] args) {
        int x;
        if (args.length > 0) {
            x = 1;
        } else {
            x = 2;
        }
    }

    public static void main2(String[] args) {
        int x = (args.length > 0) ? 1 : 2;
    }
}

Bytecode decompiled with javap -c Test:

public class Test extends java.lang.Object {
  public Test();
    Code:
       0: aload_0
       1: invokespecial #1
       4: return

  public static void main(java.lang.String[]
    Code:
       0: aload_0
       1: arraylength
       2: ifle          10
       5: iconst_1
       6: istore_1
       7: goto          12
      10: iconst_2
      11: istore_1
      12: return

  public static void main2(java.lang.String[
    Code:
       0: aload_0
       1: arraylength
       2: ifle          9
       5: iconst_1
       6: goto          10
       9: iconst_2
      10: istore_1
      11: return
}

As you can see, there is a slight difference in bytecode here - whether the istore_1 occurs within the brance or not (unlike my previous hugely-flawed attempt :) but I would be very surprised if the JITter ended up with different native code.

share|improve this answer
s/conditional statement/conditional expression/ – Laurence Gonsalves Jan 16 '11 at 17:07
@Laurence: Doh - thanks, fixed. – Jon Skeet Jan 16 '11 at 17:09
1  
I'm guessing you didn't mean for both main and main2 to be exactly the same? – ColinD Jan 16 '11 at 17:15
1  
@Kyle: I compiled the Java, then decompiled with javap. – Jon Skeet Jan 16 '11 at 17:53
1  
@Kyle: Exactly. I'd mostly expected the bytecode to be identical. As it is, it's just nearly identical :) – Jon Skeet Jan 16 '11 at 17:59
show 4 more comments

Both of your examples will probably compile to identical or nearly identical bytecode, so there should be no difference in performance.

Had there been a difference in execution speed, you should still use the most idiomatic version (which would be the second one for assigning a single variable based on a simple condition and two simple sub-expressions, and the first one for doing more complex operations or operations that do not fit on a single line).

share|improve this answer
-1 For being wrong. If you're going to claim two pieces of code will compile to the same bytecode without even providing a qualifier like "probably" or "I think," you could at least actually check that they do so. Though even if they do compile to the same bytecode, that would not guarantee that other versions of the Java compiler would not compile to different byte code. – Brian Jan 17 '11 at 6:05
@Brian: you are right. I edited my answer. – Victor Nicollet Jan 17 '11 at 8:05
1  
OK, I removed my -1 :) – Brian Jan 17 '11 at 21:22

These are the same. Both of them are fairly fast, typically around 10-30 nano-seconds. (depending on usage pattern) Is this time frame important to you?

You should do what you believe is clearest.

share|improve this answer

neither - they will be compiled to the same.

share|improve this answer

Just to add to all the other answers:

The second expression is often called tertiary/ternary operator/statement. It can be very useful because it returns an expression. Sometimes it makes the code more clearer for typical short statements.

share|improve this answer

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