用 C# 獲取 Stack 頂部的物件


要獲得 Stack 頂部的物件,程式碼如下 −

示例

 即時演示

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      Stack<string> stack = new Stack<string>();
      stack.Push("A");
      stack.Push("B");
      stack.Push("C");
      stack.Push("D");
      stack.Push("E");
      stack.Push("F");
      stack.Push("G");
      stack.Push("H");
      stack.Push("I");
      stack.Push("J");
      Console.WriteLine("Count of elements = "+stack.Count);
      Console.WriteLine("Element at the top of stack = " + stack.Peek());
   }
}

輸出

這將產生以下輸出 −

Count of elements = 10
Element at the top of stack = J

Count of elements = 10

示例

讓我們看看另一個示例 −

 即時演示

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      Stack<int> stack = new Stack<int>();
      stack.Push(10);
      stack.Push(20);
      stack.Push(30);
      stack.Push(40);
      stack.Push(50);
      stack.Push(60);
      stack.Push(70);
      stack.Push(80);
      stack.Push(90);
      stack.Push(100);
      Console.WriteLine("Count of elements = "+stack.Count);
      Console.WriteLine("Element at the top of stack = " + stack.Peek());
      Console.WriteLine("Element at the top of stack = " + stack.Peek());
   }
}

輸出

這將產生以下輸出 −

Count of elements = 10
Element at the top of stack = 100
Element at the top of stack = 100

更新於: 06-12-2019

257 次瀏覽

開啟你的 職業生涯

完成課程並獲得認證

開始使用
廣告
© . All rights reserved.