vote up 7 vote down star
6

In c#/VB.NET/.NET which loop runs faster for or foreach?

Ever since I read that for loop works faster than foreach a long time ago I assumed it stood true for all collections, generic collection all arrays etc.

I scoured google and found few articles but most of them are inconclusive (read comments on the articles) and open ended.

What would be ideal is to have each scenarios listed and the best solution for the same

e.g: (just example of how it should be)

  1. for iterating an array of 1000+ strings - for is better than foreach
  2. for iterating over IList (non generic) strings - foreach is better than for

Few references found on the web for the same:

  1. Original grand old article by Emmanuel Schanzer
  2. CodeProject FOREACH Vs. FOR
  3. Blog - To foreach or not to foreach that is the question
  4. asp.net forum - NET 1.1 C# for vs foreach

[Edit]
Apart from the readability aspect of it I am really interested in facts and figures, there are applications where the last mile of performance optimization squeezed do matter.

flag
1  
The difference still exists. Arrays in particular should be just as fast under foreach, but for everything else, plain loops are faster. Of course, most of the time, this won't make a difference, and of course, a clever JIT compiler could in theory eliminate the difference. – jalf Dec 13 '08 at 22:53
2  
Why are we talking about this? Don't you have something better to do than micro-optimize? – Jay Bazuzi Feb 17 at 17:07

9 Answers

vote up 24 vote down check

Patrick Smacchia blogged about this last month, with the following conclusions:

  • for loops on List are a bit more than 2 times cheaper than foreach loops on List.
  • Looping on array is around 2 times cheaper than looping on List.
  • As a consequence, looping on array using for is 5 times cheaper than looping on List using foreach (which I believe, is what we all do).
link|flag
4  
+1 Great article. However, never forget: "Premature optimization is the root of all evil." – Oorang May 29 at 4:53
3  
Yeah so instead of taking .005 seconds to loop through your list it could take .001 seconds to loop through an array. Glad I spent all day looking up which one was faster. – Hardwareguy Jun 22 at 15:03
@Hardwareguy: Once you know that for is almost imperceptably faster, why shouldn't you start using it in general? It doesn't take extra time. – devinb Sep 3 at 13:06
XD am I the only one to find here a logical failure? and +1 to devinb comment here – Itay Oct 22 at 23:24
vote up 14 vote down

My guess is that it will probably not be significant in 99% of the cases, so why would you choose the faster instead of the most appropriate (as in easiest to understand/maintain)?

link|flag
I totally agree with you. – Leandro López Jan 16 at 10:31
1  
Right, but you should care in 1% of cases :). But these %'s depends on what kind of work you are doing. I, in most cases, am writing programs for physics simulation and I'd say that about 20% of my loops should work as fast as it is possible. Yet, I'm not using C# for it. – klew Feb 17 at 11:28
vote up 10 vote down

It will always be close. For an array, sometimes for is slightly quicker, but foreach is more expressive, and offers LINQ etc. In generral, stick with foreach.

Additionally, foreach may be optimised in some scenarios. For example, a linked list might be terrible by indexer, but might be quick by foreach. Actually, the standard LinkedList<T> doesn't even offer an indexer for this reason.

link|flag
1  
+1 for mentioning cases other than array and List<T> where 'foreach' can be faster – Lucas May 19 at 23:54
vote up 1 vote down

I did it test a time ago, with the result that a for-loop is much faster, than a foreach-loop. Cause is simple, the foreach-loop needs to instantiate an IEnumerator for the collection first.

link|flag
2  
Not with an array it doesn't. Compile it and look at the IL :) (It also depends on the collection. IIRC, List<T> uses a value type for the enumerator.) – Jon Skeet Dec 13 '08 at 20:34
Why would one allocation be expensive? In managed .NET, allocations are practically free aren't they, since all that is done is that the pointer is incremented in the managed heap, there is little if any fragmentation in most cases. – ApplePieIsGood Dec 13 '08 at 20:48
not just one allocation, also all the method-calling overhead of MoveNext() and get_Current() for each iteration. – Lucas May 19 at 19:47
vote up -2 vote down

for has more simple logic to implement so it's faster than foreach.

link|flag
What ? What did they give me thumbs down ? – Aaron May 28 at 5:25
1  
i have no idea, i thumb you up :) – Itay Oct 22 at 23:27
@Italy : Thanks for your concern :) – Aaron Oct 23 at 5:31
vote up 8 vote down

Premature optimization is the root of all evil.

Use whichever better expresses your intent first; if it's profiled to be a bottle-neck (which I'm going to doubt), then test the other way.

link|flag
But premature optimization happens after you already wrote the code, not before. – Joan Venge Jan 8 at 18:06
vote up 2 vote down

The differences in speed in a for- and a foreach-loop are tiny when you're looping through common structures like arrays, lists, etc, and doing a LINQ query over the collection is almost always slightly slower, although it's nicer to write! As the other posters said, go for expressiveness rather than a millisecond of extra performance.

What hasn't been said so far is that when a foreach loop is compiled, it is optimised by the compiler based on the collection it is iterating over. That means that when you're not sure which loop to use, you should use the foreach loop - it will generate the best loop for you when it gets compiled. It's more readable too.

Another key advantage with the foreach loop is that if your collection implementation changes (from an int array to a List<int> for example) then your foreach loop won't require any code changes:

foreach (int i in myCollection)

The above is the same no matter what type your collection is, whereas in your for loop, the following will not build if you changed myCollection from an array to a List:

for (int i = 0; i < myCollection.Length, i++)
link|flag
vote up 0 vote down

Keep in mind that the for-loop and foreach-loop are not always equivalent. List enumerators will throw an exception if the list changes, but you won't always get that warning with a normal for loop. You might even get a different exception if the list changes at just the wrong time.

link|flag
vote up -2 vote down

In general for would be faster then foreach. However if you care you've probably got "other problems" which are of higher importance...

link|flag

Your Answer

Get an OpenID
or

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