In java I usually make a for-loop like following:
for (int i = 0; i < max; i++) {
something
}
But recently a colleague typed it so:
for (int i = 0; i < max; ++i) {
something
}
He said the latter would be faster. Is that true?
|
In java I usually make a for-loop like following:
But recently a colleague typed it so:
He said the latter would be faster. Is that true? |
|||||||||||||||||||
|
|
No, it's not true. You could measure the performance by timing each loop for a large number of iterations, but I'm fairly certain they will be the same. The myth came from C where |
|||||||||
|
|
For any reasonably capable optimizer, they will be exactly the same. If you aren't sure, look at the output bytecode or profile it. |
||||
|
|
|
Even if it is, which I very much doubt, your colleague should really have better things to spend his time learning than how to optimise a loop expression. |
|||||||||||
|
|
It will not be any faster. The compiler and JVM with the JIT will make mincemeat of such insignificant differences. You can use the usual loop optimization techniques to get speed benefits, like unrolling, if applicable. |
|||
|
|
|
In Java there should be no difference - any modern compiler* should generate the same byte code (just an
* tested with Eclipse's compiler |
||||
|
|
|
No there will be no difference at all. This came from C++ but even there there would be no difference at all in this case. Where there is a difference is where i is an object. i++ would have to make an additional copy of the object as it has to return the original unchanged value of the item whereas ++i can return the changed object so saves a copy. In c++ with user defined object the cost of a copy can be significant so it's definatly worth remembering. And because of this people tend to use it for int variables too, as it's just as good anyway... |
|||
|
|
|
Decompile with "javap -c YourClassName" and see the result and decide from that. This way you see what the compiler actually does at each case, not what you think it does. This way you also see WHY one way is faster than the other. |
|||
|
|
|
Even it one would be faster, nobody cares in the days of HotSpot. The first thing the JIT does is to remove all optimizations that javac made. After that, everything is left to the JIT to make it fast. |
|||