Can anyone explain IEnumerable and IEnumerator to me?
for example, when to use it over foreach? what's the difference between IEnumerable and IEnumerator? Why do we need to use it?
|
Can anyone explain IEnumerable and IEnumerator to me? for example, when to use it over foreach? what's the difference between IEnumerable and IEnumerator? Why do we need to use it?
| |||
|
feedback
|
You don't use When you write code like:
it's functionally equivalent to writing:
By "functionally equivalent," I mean that's actually what the compiler turns the code into. You can't use
The
and
The first method advances to the next object in the Anything in .Net that you can iterate over implements | |||||||||||||||||
feedback
|
|
IEnumerable implements GetEnumerator. When called, that method will return an IEnumerator which implements MoveNext, Reset and Current. Thus when your class implements IEnumerable, you are saying that you can call a method (GetEnumerator) and get a new object returned (an IEnumerator) you can use in a loop such as foreach. | |||
|
feedback
|
|
Inheriting from IEnumerable means your class returns an IEnumerator object:
Inheriting from IEnumerator means your class returns the methods and properties for iteration:
That's the difference anyway. | ||||
feedback
|
|
Implementing IEnumerable enables you to get an IEnumerator for a list. IEnumerator allows foreach style sequential access to the items in the list, using the yield keyword. Before foreach implementation (in Java 1.4, for example), the way to iterate a list was to get an enumerator from the list, then ask it for the "next" item in the list, for as long as the value returned as the next item is not null. Foreach simply does that implicitly as a language feature, in the same way that lock() implements the Monitor class behind the scenes. I expect foreach works on lists because they implement IEnumerable. | |||||||||||
feedback
|
|
An object implementing IEnumerable allows others to visited each of its own items through an enumerator. An object implementing IEnumerator is the doing the iteration. It's looping over an enumerable object. Think of enumerable objects as of lists, stacks, trees. | ||||
|
feedback
|
|
Implementing
Most of the time, | |||
|
feedback
|
|
Agreed to the above mentioned reasons. However to sum up:
| |||
|
feedback
|