Re: Should I do loops in reverse order ?
Re: Should I do loops in reverse order ?
- Subject: Re: Should I do loops in reverse order ?
- From: Jeff C <email@hidden>
- Date: Mon, 27 Nov 2006 21:51:40 -0500
Yep, I left out the detail about making sure the index was correct,
as that wasn't the original question.
Yes, you have to watch the i++ if you've changed the array as you
could end up with the wrong index on the next iteration.
On Nov 27, 2006, at 9:48 PM, John Stiles wrote:
On Nov 27, 2006, at 6:40 PM, Jeff C wrote:
On Nov 27, 2006, at 12:45 PM, Sean McBride wrote:
On 2006-11-27 09:22, Matt Neuburg said:
What I would do is:
int i,u=[myArray count];
for (i=0; i<u; i++)
Be careful using this pattern if myArray is mutable and the
contents are changing during iteration.
The value of u must be updated or you may run past the end of the
array and get an exception.
I generally use the form
for ( i=0; i < [theArray count]; i++ )
when i'm not using NSEnumerator and hope that the implementer was
smart enough to make the -count method as fast as possible.
Granted, that's probably not a good assumption if you're trying to
squeeze every last cycle out of the machine, but for most of the
applications I write, the sacrifice of performance is worth it to
avoid bugs.
If you are mutating the array and inserting or removing elements
inside the for loop, you may still have bugs even if you call -
count each time.
For instance, if you delete the object at the current index inside
the loop, you will skip over the next object in the array. Imagine
i=2:
0: object A
1: object B
2: object C <-- i == 2 so it references this object
3: object D
4: object E
And we delete object 2. Then on the next iteration through the
loop, we have:
0: object A
1: object B
2: object D
3: object E <-- i == 3 so it references this object
Object D was never seen because the array contents shifted over.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden