📜  获取在C#中遍历堆栈的枚举数

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

Stack .GetEnumerator方法用于获取在堆栈中迭代的IEnumerator。它位于System.Collections.Generic命名空间下。

句法:

public System.Collections.Generic.Stack.Enumerator GetEnumerator ();

下面的程序说明了上述方法的用法:

范例1:

// C# program to illustrate the
// Stack.GetEnumerator Method
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a Stack of strings
        Stack myStack = new Stack();
  
        // Inserting the elements into the Stack
        myStack.Push("Geeks");
        myStack.Push("Geeks Classes");
        myStack.Push("Noida");
        myStack.Push("Data Structures");
        myStack.Push("GeeksforGeeks");
  
        // To get an Enumerator
        // for the Stack
        IEnumerator enumerator = 
         myStack.GetEnumerator();
  
        // If MoveNext passes the end of the
        // collection, the enumerator is positioned
        // after the last element in the Stack
        // and MoveNext returns false.
        while (enumerator.MoveNext()) {
  
            Console.WriteLine(enumerator.Current);
        }
    }
}
输出:
GeeksforGeeks
Data Structures
Noida
Geeks Classes
Geeks

范例2:

// C# code to illustrate the
// Stack.GetEnumerator Method
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Creating a Stack of integers
        Stack myStack = new Stack();
  
        // Inserting the elements into the Stack
        myStack.Push(2);
        myStack.Push(3);
        myStack.Push(4);
        myStack.Push(5);
        myStack.Push(6);
  
        // To get an Enumerator
        // for the Stack
        IEnumerator enumerator = 
        myStack.GetEnumerator();
  
        // If MoveNext passes the end of the
        // collection, the enumerator is positioned
        // after the last element in the Stack
        // and MoveNext returns false.
        while (enumerator.MoveNext()) {
  
            Console.WriteLine(enumerator.Current);
        }
    }
}
输出:
6
5
4
3
2

笔记:

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

参考:

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