Computer >> Máy Tính >  >> Lập trình >> C#

Lấy đối tượng ở đầu Ngăn xếp trong C #

Để lấy đối tượng ở đầu Ngăn xếp, mã như sau -

Ví dụ

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());
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

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

Count of elements = 10

Ví dụ

Hãy để chúng tôi xem một ví dụ khác -

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());
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

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