C# Stack类

using System;using System.Collections;namespace CollectionsApplication {class Program {static void Main(string[] args) {

编程学习网为您整理以下代码实例,主要实现:C# Stack类,希望可以帮到各位朋友。

using System;
using System.Collections;

namespace CollectionsApplication {

   class Program {

      static voID Main(string[] args) {
         Stack st = new Stack();

         st.Push('A');
         st.Push('M');
         st.Push('G');
         st.Push('W');

         Console.Writeline("Current stack: ");
         foreach (char c in st) {
            Console.Write(c + " ");
         }
         Console.Writeline();

         st.Push('V');
         st.Push('H');
         Console.Writeline("The next poppable value in stack: {0}", st.Peek());
         Console.Writeline("Current stack: ");
         foreach (char c in st) {
            Console.Write(c + " ");
         }

         Console.Writeline();

         Console.Writeline("Removing values ");
         st.Pop();
         st.Pop();
         st.Pop();

         Console.Writeline("Current stack: ");
         foreach (char c in st) {
            Console.Write(c + " ");
         }
      }
   }
}

本文标题为:C# Stack类

上一篇: C#事件
下一篇: C# SortedList类

基础教程推荐