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?

link|improve this question
2  
I think you will have trouble to measure the evantual difference. Better results are generally achieved by optimizing the part inside the loop ;) – Felice Pollano Jan 28 '11 at 18:30
2  
It might be, but so little that you'd never even notice. Micro-optimizations like this are totally useless. – Rafe Kettler Jan 28 '11 at 18:31
Oh gawd. Here we go again. Prepare for some badges, Binabik. These questions oddly always get the most views... – Linus Kleen Jan 28 '11 at 18:35
1  
@PeeHaa: Both loops run same amount of cycles. I tried with max =10 and they both go from 0 to 9 for i. – Mnementh Jan 28 '11 at 18:36
@Linus Kleen There's nothing odd about these questions getting lots of views - Programmers tend to love tricks and tweaks, and the idea that they are writing powerful and fast code... Most programmers learn to code, and then have to learn not to over-optimize their code. – jball Jan 28 '11 at 18:47
show 1 more comment
feedback

7 Answers

up vote 20 down vote accepted

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 ++i was regarded as faster than i++ because the former can be implemented by incremeting i then returning it. The latter might be implemented by copying the value of i to a temporary variable, incrementing i, then returning the temporary. The first version doesn't need to make the temporary copy and so many people assume that it is faster. However if the expression is used as a statement modern C compilers can optimize the temporary copy away so that there will be no difference in practice.

link|improve this answer
Thank you for the great explanation. – Binabik Jan 28 '11 at 18:44
3  
Modern compilers will indeed optimize this, but if you are using C++, and i is an object (say, an interator), and those operators are not inline, ++i will be faster than i++. – fbafelipe Jan 28 '11 at 18:58
feedback

For any reasonably capable optimizer, they will be exactly the same. If you aren't sure, look at the output bytecode or profile it.

link|improve this answer
feedback

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.

link|improve this answer
9  
Look, ma! My program runs faster if I only use letters from the first half of the alphabet for variable names! To the refactoring machine! – Rafe Kettler Jan 28 '11 at 18:32
@Rafe Kettler Would be scary if it was true though. :) – biziclop Jan 28 '11 at 18:34
the scary thing is that in many compilers, shorter variable names use less memory. We could obsess all day long about tiny hacks, but my processor doesn't have 730 million transistors on it for no reason. – Rafe Kettler Jan 28 '11 at 18:38
@Rafe Kettler It wouldn't be the craziest theory I've heard, that award has to go to the idea that a hard drive weighs more if it has more information on it. – biziclop Jan 28 '11 at 18:41
feedback

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.

link|improve this answer
feedback

In Java there should be no difference - any modern compiler* should generate the same byte code (just an iinc) in both cases since the result of the increment expression is not being used directly.
There is a third option, still the same byte code*:

for (int i = 0; i < max; i += 1) {
   something
}

* tested with Eclipse's compiler

link|improve this answer
feedback

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...

link|improve this answer
feedback

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.

link|improve this answer
3  
[citation needed] for HotSpot removing all javac optimizations – Malfist Jan 28 '11 at 18:58
optimizations consist of removing or restructuring things, so there is nothing to “remove”. – scravy Dec 14 '11 at 12:50
feedback

Your Answer

 
or
required, but never shown

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