List
句法:
public System.Collections.Generic.List.Enumerator GetEnumerator ();
返回值:它返回List
下面的程序说明了List
范例1:
// C# code to get an enumerator
// that iterates through the List.
using System;
using System.Collections.Generic;
class GFG {
// Driver code
public static void Main()
{
// Creating a List of int
List mylist = new List();
// Inserting elements into List
mylist.Add(45);
mylist.Add(78);
mylist.Add(32);
mylist.Add(231);
mylist.Add(123);
mylist.Add(76);
mylist.Add(726);
mylist.Add(716);
mylist.Add(876);
// To get an Enumerator
// for the List.
List.Enumerator em = mylist.GetEnumerator();
display(em);
}
// display method
static void display(IEnumerator em)
{
while (em.MoveNext()) {
int val = em.Current;
Console.WriteLine(val);
}
}
}
输出:
45
78
32
231
123
76
726
716
876
范例2:
// C# code to get an enumerator
// that iterates through the List.
using System;
using System.Collections.Generic;
class GFG {
// Driver code
public static void Main()
{
// Creating a List of string
List mylist = new List();
// Inserting elements into List
mylist.Add("C#");
mylist.Add("Java");
mylist.Add("C");
mylist.Add("C++");
// To get an Enumerator
// for the List.
List.Enumerator em = mylist.GetEnumerator();
display(em);
}
// display method
static void display(IEnumerator em)
{
while (em.MoveNext()) {
string val = em.Current;
Console.WriteLine(val);
}
}
}
输出:
C#
Java
C
C++
笔记:
- C#语言的foreach语句隐藏了枚举器的复杂性。因此,建议使用foreach,而不是直接操作枚举器。
- 枚举数可用于读取集合中的数据,但不能用于修改基础集合。
- 在调用MoveNext或Reset之前,Current返回相同的对象。 MoveNext将Current设置为下一个元素。
- 只要集合保持不变,枚举数将保持有效。如果对集合进行了更改(例如添加,修改或删除元素),则枚举数将无法恢复,并且其行为是不确定的。
- 此方法是O(1)操作。
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.generic.list-1.getenumerator?view=netframework-4.7.2