C# 中的 Stack.Pop() 方法


C# 中的 Stack.Pop() 方法用於移除並返回位於堆疊頂部的物件。

語法

語法如下所示 −

public virtual object Pop ();

示例

下面我們來看一個示例 −

 現場演示

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      Stack stack = new Stack();
      stack.Push("Inspiron");
      stack.Push("Alienware");
      stack.Push("Projectors");
      stack.Push("Monitors");
      stack.Push("XPS");
      stack.Push("Laptop");
      stack.Push("Notebook");
      Console.WriteLine("Stack elements...");
      foreach(string val in stack) {
         Console.WriteLine(val);
      }
      Console.WriteLine("Count of elements = "+stack.Count);
      Console.WriteLine("Element at the top = "+ stack.Peek());
      stack.Push("Ultrabook");
      stack.Push("Cameras");
      stack.Push("Keyboards");
      Console.WriteLine("
Stack elements...updated");       foreach(string val in stack) {          Console.WriteLine(val);       }       Console.WriteLine("Element at the top = "+ stack.Peek());       Console.WriteLine("
Count of elements (updated) = "+stack.Count);       Console.WriteLine("
Removing and returning the element at the top = "+ stack.Pop());       Console.Write("Count of elements (updated) = "+stack.Count);       Console.WriteLine("
Stack elements...updated");       foreach(string val in stack) {          Console.WriteLine(val);       }    } }

輸出

這將產生以下輸出 −

Stack elements...
Notebook
Laptop
XPS
Monitors
Projectors
Alienware
Inspiron
Count of elements = 7
Element at the top = Notebook
Stack elements...updated
Keyboards
Cameras
Ultrabook
Notebook
Laptop
XPS
Monitors
Projectors
Alienware
Inspiron
Element at the top = Keyboards
Count of elements (updated) = 10
Removing and returning the element at the top = Keyboards
Count of elements (updated) = 9
Stack elements...updated
Cameras
Ultrabook
Notebook
Laptop
XPS
Monitors
Projectors
Alienware
Inspiron

示例

現在我們來看另一個示例 −

 現場演示

using System;
using System.Collections;
public class Demo {
   public static void Main() {
      Stack stack = new Stack();
      stack.Push("Inspiron");
      stack.Push("Alienware");
      stack.Push("Projectors");
      stack.Push("Monitors");
      stack.Push("XPS");
      stack.Push("Laptop");
      stack.Push("Notebook");
      Console.WriteLine("Stack elements...");
      foreach(string val in stack) {
         Console.WriteLine(val);
      }
      Console.WriteLine("Count of elements = "+stack.Count);
      Console.WriteLine("Element Speakers is the stack? = "+stack.Contains("Speakers"));
      stack.Push("Headphone");
      stack.Push("Keyboard");
      stack.Push("Earphone");
      Console.WriteLine("
Stack elements...updated");       foreach(string val in stack) {          Console.WriteLine(val);       }       Console.WriteLine("Count of elements (updated) = "+stack.Count);       Console.WriteLine("Element Alienware is the stack? = "+stack.Contains("Alienware"));       Stack stack2 = (Stack)stack.Clone();       Console.WriteLine("
Stack elements...cloned");       foreach(string val in stack2) {          Console.WriteLine(val);       }       Console.WriteLine("Count of elements (stack2) = "+stack2.Count);       Console.WriteLine("Top of the Stack (stack2) = "+stack2.Peek());       Console.WriteLine("
Removing and returning the element at the top (stack2) = "+ stack2.Pop());       Console.WriteLine("Count of elements (stack2) = "+stack2.Count);       Console.WriteLine("
Stack elements...(stack2) ");       foreach(string val in stack) {          Console.WriteLine(val);       }    } }

輸出

這將產生以下輸出 −

Stack elements...
Notebook
Laptop
XPS
Monitors
Projectors
Alienware
Inspiron
Count of elements = 7
Element Speakers is the stack? = False
Stack elements...updated
Earphone
Keyboard
Headphone
Notebook
Laptop
XPS
Monitors
Projectors
Alienware
Inspiron
Count of elements (updated) = 10
Element Alienware is the stack? = True
Stack elements...cloned
Earphone
Keyboard
Headphone
Notebook
Laptop
XPS
Monitors
Projectors
Alienware
Inspiron
Count of elements (stack2) = 10
Top of the Stack (stack2) = Earphone
Removing and returning the element at the top (stack2) = Earphone
Count of elements (stack2) = 9
Stack elements...(stack2)
Earphone
Keyboard
Headphone
Notebook
Laptop
XPS
Monitors
Projectors
Alienware
Inspiron

更新日期:2019 年 12 月 4 日

812 次瀏覽

開啟您的 職業生涯

完成課程後獲得認證

開始動手吧
廣告