vote up 7 vote down star

One of Steve McConnell's checklist items (pdf) is that you should not monkey with the loop index.

This makes intuitive sense and is a practice I've always followed except maybe as I learned how to program back in the day.

In a recent code review I found this awkward loop and immediately flagged it as suspect.

        for ( int i=0 ; i < this.MyControl.TabPages.Count ; i++ )
        {
            this.MyControl.TabPages.Remove ( this.MyControl.TabPages[i] );
            i--;
        }

It's almost amusing since it manages to work by keeping the index at zero until all TabPages are removed.

This loop could have been written as

        while(MyControl.TabPages.Count > 0)
            MyControl.TabPages.RemoveAt(0);

And since the control was in fact written at about the same time as the loop it could even have been written as

        MyControl.TabPages.Clear();

I've since been challenged about the code-review issue and found that my articulation of why it is bad practice was not as strong as I'd have liked. I said it was harder to understand the flow of the loop and therefore harder to maintain and debug and ultimately more expensive over the lifetime of the code.

Does anyone have a better articulation of why this is bad practice?

flag

11 Answers

vote up 14 vote down check

I think your articulation is great. Maybe it can be worded like so:

Since the logic can be expressed much clearer, it should.

link|flag
vote up 0 vote down

I'm not sure if I understand completely what you're after, but maybe something like this?

for ( int i=this.MyControl.TabPages.Count - 1 ; i >= 0  ; i-- )
{
    this.MyControl.TabPages.Remove ( this.MyControl.TabPages[i] );
}

or simply this of the TabPages collection implement IList:

    this.MyControl.TabPages.Clear();
link|flag
True, but that is a side issue (see my comment under the code), thanks anyway – edg Jan 19 at 10:02
i cant tell if you read the question correctly – acidzombie24 Jan 19 at 10:35
vote up 19 vote down

Well, this adds confusion for little purpose - you could just as easily write:

while(MyControl.TabPages.Count > 0)
{
    MyControl.TabPages.Remove(MyControl.TabPages[0]);
}

or (simpler)

while(MyControl.TabPages.Count > 0)
{
    MyControl.TabPages.RemoveAt(0);
}

or (simplest)

MyControl.TabPages.Clear();

In all of the above, I don't have to squint and think about any edge-cases; it is pretty clear what happens when. If you are modifying the loop index, you can quickly make it quite hard to understand at a glance.

link|flag
Indeed, just as I pointed out in my question, it would be better as a while loop. Do you have any idea how better to articulate the don't-monky-with-loop-index principle? – edg Jan 19 at 9:51
How about simply: if you don't need to make it complex - don't. – Marc Gravell Jan 19 at 9:53
AKA: "K.I.S.S." – Marc Gravell Jan 19 at 9:54
+1, even if the PO said it was "another issue". You make it clear how clear it could be written. (Pun very much intended.) – PEZ Jan 19 at 9:58
vote up 2 vote down

I think you could build a stronger argument by invoking Knuth's concepts of literate programming, that programs should not be written for computers, but to communicate concepts to other programmers, thus the simpler loop:

 while (this.MyControl.TabPages.Count>0)
 {
            this.MyControl.TabPages.Remove ( this.MyControl.TabPages[0] );
 }

more clearly illustrates the intent - remove the first tab page until there are none left. I think most people would grok that much quicker than the original example.

link|flag
Fair point, but that is a side issue (see my comment under the code), thanks anyway – edg Jan 19 at 10:03
I saw the comment, the point I'm trying to make is just a wordier version of the accepted answer "Since the logic can be expressed much clearer, it should." – Paul Dixon Jan 19 at 10:21
vote up 1 vote down

This might be clearer:

while (this.MyControl.TabPages.Count > 0)
{
  this.MyControl.TabPages.Remove ( this.MyControl.TabPages[0] );
}
link|flag
True, but that is a side issue (see my comment under the code), thanks anyway – edg Jan 19 at 10:02
vote up 0 vote down

One argument that could be used is that it is much more difficult to debug such code, where the index is being changed twice.

link|flag
vote up 11 vote down

It's all about expectation.

When one uses a loopcounter, you expect that it is incremented (decremented) each iteration of the loop with the same amount.

If you mess (or monkey if you like) with the loop counter, your loop does not behave like expected. This means it is harder to understand and it increases the chance that your code is misinterpreted, and this introduces bugs. Or to (mis) quote a wise but fictional character:

complexity leads to misunderstanding

misunderstanding leads to bugs

bugs leads to the dark side.
link|flag
Spot on, and well communicated. I'd vote you up twice if I could. – Raithlin Jan 19 at 10:34
I think the last line needs to be "bugs lead to suffering" but hilarious none the less! :) – Andrew Hare Jan 20 at 13:24
vote up 1 vote down

The original code is highly redundant to bend the action of the for-loop to what is necessary. The increment is unnecessary, and balanced by the decrement. Those should be PRE-increments, not POST-increments as well, because conceptually the post-increment is wrong. The comparison with the tabpages count is semi-redundant since that's a hackish way of checking that the container is empty.

In short, it's unnecessary cleverness, it adds rather than removes redundancy. Since it can be both obviously simpler and obviously shorter, it's wrong.

link|flag
vote up 0 vote down

I think pointing out the fact that the loop iteratations is beeing controled not by the "i++" as anyone would expect but by the crazy "i--" setup should have been enough.

I also think that altering the the state of "i" by evaluating the count and then altering the count in the loop may also lead to potential problems. I would expect a for loop to generally have a "fixed" number of iterations and the only part of the for loop condition that changes to be the loop variable "i".

link|flag
vote up 2 vote down

I agree with your challenge. If they want to keep a for loop, the code:

for ( int i=0 ; i < this.MyControl.TabPages.Count ; i++ ) {
    this.MyControl.TabPages.Remove ( this.MyControl.TabPages[i] );
    i--;
}

reduces as follows:

for ( int i=0 ; i < this.MyControl.TabPages.Count ; ) {
    this.MyControl.TabPages.Remove ( this.MyControl.TabPages[i] );
}

and then to:

for ( ; 0 < this.MyControl.TabPages.Count ; ) {
    this.MyControl.TabPages.Remove ( this.MyControl.TabPages[0] );
}

But a while loop or a Clear() method, if that exists, are clearly preferable.

link|flag
should that be " 0 < " in the last example? – Marc Gravell Jan 19 at 10:22
Agreed - thanks Marc. Edited out. – Sam Meldrum Jan 19 at 10:30
vote up -1 vote down

For reference, the advice to avoid monkeying with the loop index is found on page 377 of Code Complete 2 (2004) ISBN 0-7356-1967-0

link|flag

Your Answer

Get an OpenID
or

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