vote up 30 vote down star
4

If you had to iterate through a loop 7 times, would you use:

for (int i = 0; i < 7; i++)

or:

for (int i = 0; i <= 6; i++)

There are two considerations:

  • performance
  • readability

For performance I'm assuming Java or C#. Does it matter if "less than" or "less than or equal to" is used? If you have insight for a different language, please indicate which.

For readability I'm assuming 0-based arrays.

UPD: My mention of 0-based arrays may have confused things. I'm not talking about iterating through array elements. Just a general loop.

There is a good point below about using a constant to which would explain what this magic number is. So if I had "int NUMBER_OF_THINGS = 7" then "i <= NUMBER_OF_THINGS - 1" would look weird, wouldn't it.

flag
show 1 more comment

38 Answers

prev 1 2
vote up 0 vote down

I think either are OK, but when you've chosen, stick to one or the other. If you're used to using <=, then try not to use < and vice versa.

I prefer <=, but in situations where you're working with indexes which start at zero, I'd probably try and use <. It's all personal preference though.

link|flag
vote up 127 vote down

The first is more idiomatic. In particular, it indicates (in a 0-based sense) the number of iterations. When using something 1-based (e.g. JDBC, IIRC) I might be tempted to use <=. So:

for (int i=0; i < count; i++) // For 0-based APIs

for (int i=1; i <= count; i++) // For 1-based APIs

I would expect the performance difference to be insignificantly small in real-world code.

link|flag
7  
You're almost guaranteed there won't be a performance difference. Many architectures, like x86, have "jump on less than or equal in last comparison" instructions. The most likely way you'd see a performance difference would be in some sort of interpreted language that was poorly implemented. – Wedge Oct 8 '08 at 19:19
2  
This answer needs to be accepted. – Robert S. Dec 2 '08 at 16:40
6  
I wouldn't usually. It's just too unfamiliar. It also risks going into a very, very long loop if someone accidentally increments i during the loop. – Jon Skeet Apr 2 at 10:22
1  
Generic programming with STL iterators mandates use of !=. It (accidental double incrementing) hasn't been a problem for me. I do agree that for indices < (or > for descending) are more clear and conventional. – wrang-wrang Sep 18 at 18:57
show 3 more comments
vote up 5 vote down

I prefer:

for (int i = 0; i < 7; i++)

I think that translates more readily to "iterating through a loop 7 times".

I'm not sure about the performance implications - I suspect any differences would get compiled away.

link|flag
vote up 4 vote down

I don't think there is a performance difference. The second form is definitely more readable though, you don't have to mentally subtract one to find the last iteration number.

EDIT: I see others disagree. For me personally, I like to see the actual index numbers in the loop structure. Maybe it's because it's more reminiscent of Perl's 0..6 syntax, which I know is equivalent to (0,1,2,3,4,5,6). If I see a 7, I have to check the operator next to it to see that, in fact, index 7 is never reached.

link|flag
show 1 more comment
vote up 19 vote down

I always use < array.length because it's easier to read than <= array.length-1.

also having < 7 and given that you know it's starting with a 0 index it should be intuitive that the number is the number of iterations.

link|flag
vote up 3 vote down

In Java 1.5 you can just do

for (int i: myArray) {
    ...
}

so for the array case you don't need to worry.

link|flag
vote up 42 vote down

Both of those loops iterate 7 times. I'd say the one with a 7 in it is more readable/clearer, unless you have a really good reason for the other.

link|flag
vote up 6 vote down

It makes no effective difference when it comes to performance. Therefore I would use whichever is easier to understand in the context of the problem you are solving.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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