📜  C#|获取一个遍历Collection的枚举数<T>

📅  最后修改于: 2021-05-29 20:25:11             🧑  作者: Mango

Collection .GetEnumerator方法用于获取遍历Collection 的枚举数。

句法:

public System.Collections.Generic.IEnumerator GetEnumerator ();

返回值:该方法返回Collection 的IEnumerator

下面的程序说明了上面讨论的方法的使用:

范例1:

// C# code to get an Enumerator that
// iterates through the Collection
using System;
using System.Collections.ObjectModel;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
        // Creating a collection of strings
        Collection myColl = new Collection();
  
        myColl.Add("A");
        myColl.Add("B");
        myColl.Add("C");
        myColl.Add("D");
        myColl.Add("E");
  
        // Displaying the number of elements in Collection
        Console.WriteLine("The number of elements in myColl are: "
                                                  + myColl.Count);
  
        // To get an Enumerator
        // for the Collection
        var enumerator = myColl.GetEnumerator();
  
        // If MoveNext passes the end of the
        // collection, the enumerator is positioned
        // after the last element in the collection
        // and MoveNext returns false.
        while (enumerator.MoveNext()) {
  
            Console.WriteLine(enumerator.Current);
        }
    }
}
输出:
The number of elements in myColl are: 5
A
B
C
D
E

范例2:

// C# code to get an Enumerator that
// iterates through the Collection
using System;
using System.Collections.ObjectModel;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a collection of integers
        Collection myColl = new Collection();
  
        myColl.Add(45);
        myColl.Add(56);
        myColl.Add(78);
        myColl.Add(75);
  
        // Displaying the number of elements in Collection
        Console.WriteLine("The number of elements in myColl are: "
                                                  + myColl.Count);
  
        // To get an Enumerator
        // for the Collection
        var enumerator = myColl.GetEnumerator();
  
        // If MoveNext passes the end of the
        // collection, the enumerator is positioned
        // after the last element in the collection
        // and MoveNext returns false.
        while (enumerator.MoveNext()) {
  
            Console.WriteLine(enumerator.Current);
        }
    }
}
输出:
The number of elements in myColl are: 4
45
56
78
75

笔记:

  • C#语言的foreach语句隐藏了枚举器的复杂性。因此,建议使用foreach ,而不是直接操作枚举器。
  • 枚举数可用于读取集合中的数据,但不能用于修改基础集合。
  • 在调用MoveNextReset之前,Current返回相同的对象。 MoveNext将Current设置为下一个元素。
  • 只要集合保持不变,枚举数将保持有效。如果对集合进行了更改(例如添加,修改或删除元素),则枚举数将无法恢复,并且其行为是不确定的。
  • 此方法是O(1)操作。

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.objectmodel.collection-1.getenumerator?view=netframework-4.7.2