Tagged Questions

83
votes
13answers
5k views

What is x after “x = x++”? [closed]

Possible Duplicate: Is there a difference between x++ and ++x in java? Why does this go into an infinite loop? What happens (behind the curtains) when this is executed? int x = 7; x = ...
33
votes
15answers
3k views

a = (a++) * (a++) gives strange results in Java [closed]

I'm studying for the OCPJP exam, and so I have to understand every little strange detail of Java. This includes the order in which the pre- and post-increment operators apply to variables. The ...
8
votes
26answers
1k views

Why doesn't changing the pre to the post increment at the iteration part of a for loop make a difference?

Why does this int x = 2; for (int y =2; y>0;y--){ System.out.println(x + " "+ y + " "); x++; } prints the same as this? int x = 2; for (int y =2; y>0;--y){ ...
6
votes
3answers
665 views

post increment operator java

I can't make heads or tails of the following code from "java puzzlers" by joshua bloch. public class Test22{ public static void main(String args[]){ int j=0; for(int i=0;i<100;i++){ ...
1
vote
5answers
3k views

explain working of post and pre increment operator in Java

can you explain me the output of this in case of Java int a=5,i; i=++a + ++a + a++; i=a++ + ++a + ++a; a=++a + ++a + a++; System.out.println(a); System.out.println(i); The output is 20 ...
1
vote
5answers
280 views

Question about post-increment operator

Why does the following code int i = 1; System.out.print(i += i++); System.out.print(i); output 2 two times instead of 3 for the 2nd print? Could somebody please shed some light on it? ...
1
vote
23answers
4k views

What is more efficient i++ or ++i? [closed]

Exact Duplicate: Is there a performance difference between i++ and ++i in C++? Exact Duplicate: Why should I use ++i? Exact Duplicate: Difference between i++ and ++i in a loop? What is more ...
-1
votes
7answers
410 views

The difference between ++Var and Var++ [closed]

Possible Duplicate: whether a language needs preIncrement (++x) and postIncrement (x++) In programming, particularly in Java, what is the difference between: int var = 0; var++; and ...