IEnumerable 只有一個方法:IEnumerator GetEnumerator(). INumerable 是集合應該實現的一個介面,這樣,就能用 foreach 來遍歷這個集合。 IEnumerator 有Current屬性,MoveNext(), Reset()兩個方法。 當 fore ...
IEnumerable 只有一個方法:IEnumerator GetEnumerator(). INumerable 是集合應該實現的一個介面,這樣,就能用 foreach 來遍歷這個集合。 IEnumerator 有Current屬性,MoveNext(), Reset()兩個方法。 當 foreach 使用到一個 IEnumerable 的集合上的時候,遍歷是這樣開始的: 1. 調用 GetEnumerator() 得到一個 IEnumerator 的對象。 2. 調用 MoveNext(); 3. 使用 其中一個對象。 4. 重覆2和3, 直到 MoveNext()返回 false(沒有下一個啦). 由此可見 1. GetEnumerator() 返回的對象在最開始的時候,指針是放在第一個對象之前的,Reset()之後也是這樣。 2. 為了使用 foreach, 實現 IEnumerable 不是必須的,只是一個 best practice 而已。 下麵我們來看微軟提供的一個例子:
using System; using System.Collections; // Simple business object. public class Person { public Person(string fName, string lName) { this.firstName = fName; this.lastName = lName; } public string firstName; public string lastName; } // Collection of Person objects. This class // implements IEnumerable so that it can be used // with ForEach syntax. public class People : IEnumerable { private Person[] _people; public People(Person[] pArray) { _people = new Person[pArray.Length]; for (int i = 0; i < pArray.Length; i++) { _people[i] = pArray[i]; } } // Implementation for the GetEnumerator method. IEnumerator IEnumerable.GetEnumerator() { return (IEnumerator) GetEnumerator(); } public PeopleEnum GetEnumerator() { return new PeopleEnum(_people); } } // When you implement IEnumerable, you must also implement IEnumerator. public class PeopleEnum : IEnumerator { public Person[] _people; // Enumerators are positioned before the first element // until the first MoveNext() call. int position = -1; public PeopleEnum(Person[] list) { _people = list; } public bool MoveNext() { position++; return (position < _people.Length); } public void Reset() { position = -1; } object IEnumerator.Current { get { return Current; } } public Person Current { get { try { return _people[position]; } catch (IndexOutOfRangeException) { throw new InvalidOperationException(); } } } } class App { static void Main() { Person[] peopleArray = new Person[3] { new Person("John", "Smith"), new Person("Jim", "Johnson"), new Person("Sue", "Rabon"), }; People peopleList = new People(peopleArray); foreach (Person p in peopleList) Console.WriteLine(p.firstName + " " + p.lastName); } } /* This code produces output similar to the following: * * John Smith * Jim Johnson * Sue Rabon * */