ArrayList.GetEnumerator方法用于获取整个ArrayList的枚举数。
句法:
public virtual System.Collections.IEnumerator GetEnumerator ();
返回值:它返回整个ArrayList的IEnumerator。
下面的程序说明了上面讨论的方法的使用:
范例1:
// C# code to get an enumerator
// for the entire ArrayList
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating an ArrayList
ArrayList myList = new ArrayList();
// adding elements in myList
myList.Add("Geeks");
myList.Add("GFG");
myList.Add("C#");
myList.Add("Tutorials");
// To get an Enumerator
// for the ArrayList
IEnumerator enumerator = myList.GetEnumerator();
// If MoveNext passes the end of the
// collection, the enumerator is positioned
// after the last element in the ArrayList
// and MoveNext returns false.
while (enumerator.MoveNext()) {
Console.WriteLine(enumerator.Current);
}
}
}
输出:
Geeks
GFG
C#
Tutorials
范例2:
// C# code to get an enumerator
// for the entire ArrayList
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating an ArrayList
ArrayList myList = new ArrayList();
// adding elements in myList
myList.Add(14);
myList.Add(45);
myList.Add(78);
myList.Add(57);
// To get an Enumerator
// for the ArrayList
IEnumerator enumerator = myList.GetEnumerator();
// If MoveNext passes the end of the
// collection, the enumerator is positioned
// after the last element in the ArrayList
// and MoveNext returns false.
while (enumerator.MoveNext()) {
Console.WriteLine(enumerator.Current);
}
}
}
输出:
14
45
78
57
笔记:
- C#语言的foreach语句隐藏了枚举器的复杂性。因此,建议使用foreach ,而不是直接操作枚举器。
- 枚举数可用于读取集合中的数据,但不能用于修改基础集合。
- 在调用MoveNext或Reset之前,Current返回相同的对象。 MoveNext将Current设置为下一个元素。
- 只要集合保持不变,枚举数将保持有效。如果对集合进行了更改(例如添加,修改或删除元素),则枚举数将无法恢复,并且其行为是不确定的。
- 此方法是O(1)操作。
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.arraylist.getenumerator?view=netframework-4.7.2