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

📅  最后修改于: 2021-05-29 17:15:54             🧑  作者: Mango

HashSet .GetEnumerator方法用于获取遍历HashSet对象的枚举数。

句法:

返回值:它返回一个HashSet.Enumerator的HashSet 对象的对象。

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

范例1:

// C# code to get an enumerator that
// iterates through the HashSet
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a HashSet of strings
        HashSet mySet = new HashSet();
  
        // Inserting elements in HashSet
        mySet.Add("DS");
        mySet.Add("C++");
        mySet.Add("Java");
        mySet.Add("C#");
  
        // To get an Enumerator
        // for the HashSet.
        HashSet.Enumerator em = mySet.GetEnumerator();
        display(em);
    }
  
    // display method
    static void display(IEnumerator em)
    {
        while (em.MoveNext()) {
            string val = em.Current;
            Console.WriteLine(val);
        }
    }
}
输出:
DS
C++
Java
C#

范例2:

// C# code to get an enumerator that
// iterates through the HashSet
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a HashSet of integers
        HashSet mySet1 = new HashSet();
  
        // Inserting elements in HashSet
        for (int i = 1; i <= 10; i++)
            mySet1.Add(2 * i);
  
        // To get an Enumerator
        // for the HashSet.
        HashSet.Enumerator em = mySet1.GetEnumerator();
        display(em);
    }
  
    // display method
    static void display(IEnumerator em)
    {
        while (em.MoveNext()) {
            int val = em.Current;
            Console.WriteLine(val);
        }
    }
}
输出:
2
4
6
8
10
12
14
16
18
20

笔记:

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

参考:

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