Pls help me understand this briefly
feedback
|
|
Looking at the generated bytecode:
generates (use
So using (jdk1.6.0_18):
creates
whereas
all result in
However, doing a rough performance test on my laptop resulted in next to no difference in the runtime between the two (sometimes ++x was quicker, sometimes x=x+1 was quicker), so I wouldn't worry about the performance implications. | |||
|
feedback
|
|
No difference - and it shouldn't be any difference. All of the above examples (
Which version the compiler uses is totally up to the compiler with some minor quirks including that That beeing said, both the With my compiler, *jdk1.6.0_20* the "increment" methods even uses the same instruction.
This is the disassembly:
| |||||
|
feedback
|
|
No, there won't be any noticeable difference. Use what you find the most readable (which is First rule of code optimization: don't. | |||||||||||||
feedback
|
|
The compiler should optimize and there should be no difference at all. But keep in mind that prefix increment operator may be (it depends by the compiler) faster than the postfix equivalent (in C++ and C# also):
prefix:
postfix:
| |||||||
|
feedback
|
|
a++ is much faster. It converts to INC command of assembler.But I think JVM will optimize a=a+1 so you don't need to care about that. | |||
|
feedback
|
|
It's the same, and nowadays with compiler optimization should not be aware of that stuff, to increase your performance check other bigger issues like allocs :) | |||
|
feedback
|