Tagged Questions
4
votes
4answers
125 views
Is the pre-incriment operator thread-safe? (java)
I'm making a program in java that races a few cars against each other. Each car is a separate thread.
When cars complete the race, each one all calls this method. I've tested the method at varying ...
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
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
351 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
...