El método HashSet<T>.GetEnumerator se usa para obtener un enumerador que itera a través de un objeto HashSet .
Sintaxis:
public System.Collections.Generic.HashSet<T>.Enumerator GetEnumerator();
Valor devuelto: Devuelve un HashSet<T>.Enumerator
objeto para el objeto HashSet<T> .
Los siguientes programas ilustran el uso del método mencionado anteriormente:
Ejemplo 1:
// C# code to get an enumerator that // iterates through the HashSet<T> using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a HashSet<T> of strings HashSet<string> mySet = new HashSet<string>(); // Inserting elements in HashSet mySet.Add("DS"); mySet.Add("C++"); mySet.Add("Java"); mySet.Add("C#"); // To get an Enumerator // for the HashSet<T>. HashSet<string>.Enumerator em = mySet.GetEnumerator(); display(em); } // display method static void display(IEnumerator<string> em) { while (em.MoveNext()) { string val = em.Current; Console.WriteLine(val); } } }
Producción:
DS C++ Java C#
Ejemplo 2:
// C# code to get an enumerator that // iterates through the HashSet<T> using System; using System.Collections.Generic; class GFG { // Driver code public static void Main() { // Creating a HashSet of integers HashSet<int> mySet1 = new HashSet<int>(); // Inserting elements in HashSet for (int i = 1; i <= 10; i++) mySet1.Add(2 * i); // To get an Enumerator // for the HashSet<T>. HashSet<int>.Enumerator em = mySet1.GetEnumerator(); display(em); } // display method static void display(IEnumerator<int> em) { while (em.MoveNext()) { int val = em.Current; Console.WriteLine(val); } } }
Producción:
2 4 6 8 10 12 14 16 18 20
Nota:
- La instrucción foreach del lenguaje C# oculta la complejidad de los enumeradores. Por lo tanto, se recomienda usar foreach , en lugar de manipular directamente el enumerador.
- Los enumeradores se pueden usar para leer los datos de la colección, pero no se pueden usar para modificar la colección subyacente.
- Current devuelve el mismo objeto hasta que se llama MoveNext o Reset . MoveNext establece Current en el siguiente elemento.
- Un enumerador sigue siendo válido mientras la colección permanezca sin cambios. Si se realizan cambios en la colección, como agregar, modificar o eliminar elementos, el enumerador se invalida irremediablemente y su comportamiento no está definido.
- Este método es una operación O(1).
Referencia:
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA