vote up 3 vote down star

Is there a difference between ++x and x++ in java?

flag

57% accept rate
12  
Cue a torrent of identical answers... – skaffman Jul 7 at 21:10
1  
... and upvoting of the first of the identical answers to get in... – skaffman Jul 7 at 21:12
2  
to the quickest go the spoils, sort by oldest, click upvote. ohowoho. – dotjoe Jul 7 at 21:16
I was sure i had it! Emil's answer is better anyway. – Victor Jul 7 at 21:38
1  
Have to say though, that it feels a bit silly to get 20 upvotes for that. Guess I just got lucky today... – Emil H Jul 7 at 21:43
show 1 more comment

8 Answers

vote up 5 vote down

These are known as postfix and prefix operators. Both will add 1 to the variable but there is a difference in the result of the statement.

int x = 0;
int y = 0;
y = ++x;            // result: y=1, x=1

int x = 0;
int y = 0;
y = x++;            // result: y=0, x=1

See here http://www.janeg.ca/scjp/oper/prefix.html

link|flag
vote up 1 vote down

Yes, the value returned is the value after and before the incrementation, respectively.

class Foo {
    public static void main(String args[]) {
        int x = 1;
        int a = x++;
        System.out.println("a is now " + a);
        x = 1;
        a = ++x;
        System.out.println("a is now " + a);
    }
}

$ java Foo
a is now 1
a is now 2
link|flag
vote up 2 vote down

Yes.

public class IncrementTest extends TestCase {

    public void testPreIncrement() throws Exception {
    	int i = 0;
    	int j = i++;
    	assertEquals(0, j);
    	assertEquals(1, i);
    }

    public void testPostIncrement() throws Exception {
    	int i = 0;
    	int j = ++i;
    	assertEquals(1, j);
    	assertEquals(1, i);
    }
}
link|flag
vote up 1 vote down

If it's like many other languages you may want to have a simple try:

i = 0;
if (0 == i++) // if true, increment happened after equality check
if (2 == ++i) // if true, increment happened before equality check

If the above doesn't happen like that, they may be equivalent

link|flag
vote up 1 vote down

Yes, using ++X, X+1 will be used in the expression. Using X++, X will be used in the expression and X will only be increased after the expression has been evaluated.

So if X = 9, using ++X, the value 10 will be used, else, the value 9.

link|flag
vote up 7 vote down

yes

++x increments the value of x and then returns x
x++ returns the value of x and then increments

example:

x=0;
a=++x;
b=x++;

after the code is run both a and b will be 1 but x will be 2.

link|flag
2  
+1 Lots of examples, this is an explanation with examples :) – Jeremy Jul 7 at 21:36
Yeah, I also ended up upvoting this one because of the clear prose explanation at the start. (Hmm, didn't know you can do cursive in comments nowadays... cool) – Jonik Jul 7 at 21:45
vote up 5 vote down

Yes,

int x=5;
System.out.println(++x);

will print 6 and

int x=5;
System.out.println(x++);

will print 5.

link|flag
Why is this only +1 and the same answer , posted at the same instant is +5? – Tom Jul 7 at 21:12
2  
Because we're turning into slashdot... slowly... surely... – skaffman Jul 7 at 21:13
@Tom, I was just considering how to cast my votes, so here's my interpretation: one small reason to prefer Emil H's answer is that his example code is /slightly/ more informative. – Jonik Jul 7 at 21:20
Jonik. True, also includes keywords 'preincrement' and 'postincrement'. – Tom Jul 7 at 21:27
vote up 29 vote down

++x is called preincrement while x++ is called postincrement.

int x = 5, y = 5;

System.out.println(++x); // outputs 6
System.out.println(x); // outputs 6

System.out.println(y++); // outputs 5
System.out.println(y); // outputs 6
link|flag
Good explanation – Rahul Garg Jul 8 at 6:11

Your Answer

Get an OpenID
or

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