Which is better for performance? This may not be consistent with other programming languages, so if they are different, or if you can answer my question with your knowledge in a
I find it hard to imagine situations where the code samples you give would have different performance characteristics.
I do have a mild curiosity for you though. In Pascal like languages (e.g. Delphi) the loop limits are evaluated only once. This differs from the C like languages where the loop limits are evaluated each iteration. This can have performance implications but of course its trivial to write performant code in C like languages by introducing a local outside the loop.
For example:
Delphi
for i := 0 to List.Count-1 do
DoStuff(List[i]);
List.Count
is only evaluated once.
C++
for (int i=0; i
Here, List.getCount()
is called every time around the loop.
If it transpires that evaluating the loop limits is expensive then this difference can be relevant. Naturally it is trivial to evaluate List.getCount()
outside the loop and store the result in a local variable.
Having compared the for
loops of Pascal and C/C++ I would say that the Pascal version is very simplistic in comparison. This is not necessarily a bad thing because for more complex there is always while
available.