vote up 2 vote down star

If you have a for loop such as:

For Each s As String In stringList
    ..do stuff..
Next

is there some sort of (hidden) iterator or do I have to add an external integer to keep count:

Dim i As Integer
For Each s As String In stringList
    ..do stuff..
    i += 1
Next
flag

78% accept rate
You would have to keep count yourself if you need it. – Kenny Jan 5 '09 at 14:10
Similar, if not identical question here: stackoverflow.com/questions/205986/… – splattne Jan 5 '09 at 14:25

9 Answers

vote up 8 vote down check

There is no hidden iterator, you would have to use the code in your second example or revert back to a regular for loop.

link|flag
Don't forget to initialize i. – Martinho Fernandes Jan 5 '09 at 14:22
VB initializes integers to zero automatically in most cases, including this one. – Michael Haren Jan 5 '09 at 16:31
vote up 2 vote down

A foreach does not require another counter. It iterates through each string in your list (assuming stringList in your example is just what it sounds like :) ). Unless there is some reason you want to stop doing something to each string in your list (i.e. only process the first 3 strings). That would be the only reason to have a counter inside your foreach loop. I just reread the OP. The other reason is to know how many strings you have processed.

Hope this helps! Theresa

link|flag
vote up 0 vote down

A for-each loop will keep track of the enumerator for you.

ForEach s As String In new string[] {"one","two","three"}
    Console.WriteLine(s);
Next

(Sorry about the bastardisation of VB and C#, I'm a curly brackets kind of guy - probably best to think of it as pseudo-code)

The code above would output

one

two

three

if it would compile. :)

link|flag
vote up 0 vote down

There is no hidden iterator.

The variable i in your example is redundant.

PS: If you do need i to keep track of something, I'd initialise it before I'd rely on it.

link|flag
vote up 0 vote down

You definitely don't need to provide your own external integer.

Even so, there is no hidden counter. There is a hidden enumerator. The difference is that not everything that can be iterated is accessible by index. Some times you can't get the next item in a sequence until you've calculated the previous item. So an enumerator may use a state machine that tracks your current position and returns the next item for each iteration of the loop, rather than using a counter.

link|flag
vote up 0 vote down

For Each loops don't have a counter you can use. They work on objects that implement IEnumerable (collections, arrays, etc.). You could reproduce similar behavior by saying stringList.GetEnumerator and managing it yourself.

In these cases, I prefer to use a regular for loop but pull out the object I'm working on at the top:

For i as Integer = 0 To stringList.Count - 1
   Dim s as String = stringList(i)

   'do stuff
Next

This allows you to access each item with the simple var "s" and keep a counter.

link|flag
vote up 0 vote down

foreach loops are implemented using an Enumerator which keeps track of the count. If you want to know how many loops you've gone through you need to use a for loop or keep track of the count yourself.

link|flag
vote up 0 vote down

Part of the magic of "For Each" is that you don't need to track the loop incrementor yourself. It's done for you. You may read documentation refer to the interface "IEnumerable" and say it must implement "GetEnumerator()" which is true. The GetEnumerator() function provides this magic.

I think that is correct. I'm sure someone will correct me if otherwise.

link|flag
vote up 0 vote down

From an elegant code view it would be nice if the enumerator was available with .First() and .Last() methods.

link|flag

Your Answer

Get an OpenID
or

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