Stack<T> 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示相同指定型別實例的變數大小後進先出 (LIFO) 集合。
generic <typename T>
public ref class Stack : System::Collections::Generic::IEnumerable<T>, System::Collections::Generic::IReadOnlyCollection<T>, System::Collections::ICollection
generic <typename T>
public ref class Stack : System::Collections::Generic::IEnumerable<T>, System::Collections::ICollection
public class Stack<T> : System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.ICollection
[System.Runtime.InteropServices.ComVisible(false)]
[System.Serializable]
public class Stack<T> : System.Collections.Generic.IEnumerable<T>, System.Collections.ICollection
[System.Runtime.InteropServices.ComVisible(false)]
[System.Serializable]
public class Stack<T> : System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.ICollection
public class Stack<T> : System.Collections.Generic.IEnumerable<T>, System.Collections.ICollection
type Stack<'T> = class
interface seq<'T>
interface IEnumerable
interface IReadOnlyCollection<'T>
interface ICollection
[<System.Runtime.InteropServices.ComVisible(false)>]
[<System.Serializable>]
type Stack<'T> = class
interface seq<'T>
interface ICollection
interface IEnumerable
[<System.Runtime.InteropServices.ComVisible(false)>]
[<System.Serializable>]
type Stack<'T> = class
interface seq<'T>
interface IEnumerable
interface ICollection
interface IReadOnlyCollection<'T>
type Stack<'T> = class
interface seq<'T>
interface ICollection
interface IEnumerable
Public Class Stack(Of T)
Implements ICollection, IEnumerable(Of T), IReadOnlyCollection(Of T)
Public Class Stack(Of T)
Implements ICollection, IEnumerable(Of T)
類型參數
- T
指定堆疊中的項目類型。
- 繼承
-
Stack<T>
- 屬性
- 實作
範例
下列程式代碼範例示範 Stack<T> 泛型類別的數種方法。 程式代碼範例會建立具有預設容量的字串堆疊,並使用 Push 方法將五個字元串推送至堆疊。 列舉堆疊的專案,不會變更堆疊的狀態。 Pop 方法可用來從堆疊中快顯第一個字串。 Peek 方法可用來查看堆疊上的下一個專案,然後使用 Pop 方法將其快顯。
ToArray 方法可用來建立數位,並將堆疊元素複製到該陣列,然後將陣列傳遞至接受 IEnumerable<T>的 Stack<T> 建構函式,並使用反轉元素的順序建立堆疊的複本。 複本的專案隨即顯示。
會建立堆疊大小的兩次數組,並使用 CopyTo 方法來複製陣列元素,從數位中間開始。 Stack<T> 建構函式會再次用來建立堆疊複本,並反轉元素的順序;因此,這三個 Null 元素位於結尾。
Contains 方法可用來顯示字串 「four」 位於堆疊的第一個複本中,之後 Clear 方法會清除複本,而 Count 屬性會顯示堆疊是空的。
using System;
using System.Collections.Generic;
class Example
{
public static void Main()
{
Stack<string> numbers = new Stack<string>();
numbers.Push("one");
numbers.Push("two");
numbers.Push("three");
numbers.Push("four");
numbers.Push("five");
// A stack can be enumerated without disturbing its contents.
foreach( string number in numbers )
{
Console.WriteLine(number);
}
Console.WriteLine("\nPopping '{0}'", numbers.Pop());
Console.WriteLine("Peek at next item to destack: {0}",
numbers.Peek());
Console.WriteLine("Popping '{0}'", numbers.Pop());
// Create a copy of the stack, using the ToArray method and the
// constructor that accepts an IEnumerable<T>.
Stack<string> stack2 = new Stack<string>(numbers.ToArray());
Console.WriteLine("\nContents of the first copy:");
foreach( string number in stack2 )
{
Console.WriteLine(number);
}
// Create an array twice the size of the stack and copy the
// elements of the stack, starting at the middle of the
// array.
string[] array2 = new string[numbers.Count * 2];
numbers.CopyTo(array2, numbers.Count);
// Create a second stack, using the constructor that accepts an
// IEnumerable(Of T).
Stack<string> stack3 = new Stack<string>(array2);
Console.WriteLine("\nContents of the second copy, with duplicates and nulls:");
foreach( string number in stack3 )
{
Console.WriteLine(number);
}
Console.WriteLine("\nstack2.Contains(\"four\") = {0}",
stack2.Contains("four"));
Console.WriteLine("\nstack2.Clear()");
stack2.Clear();
Console.WriteLine("\nstack2.Count = {0}", stack2.Count);
}
}
/* This code example produces the following output:
five
four
three
two
one
Popping 'five'
Peek at next item to destack: four
Popping 'four'
Contents of the first copy:
one
two
three
Contents of the second copy, with duplicates and nulls:
one
two
three
stack2.Contains("four") = False
stack2.Clear()
stack2.Count = 0
*/
open System
open System.Collections.Generic
let numbers = Stack()
numbers.Push "one"
numbers.Push "two"
numbers.Push "three"
numbers.Push "four"
numbers.Push "five"
// A stack can be enumerated without disturbing its contents.
for number in numbers do
printfn $"{number}"
printfn $"\nPopping '{numbers.Pop()}'"
printfn $"Peek at next item to destack: {numbers.Peek()}"
numbers.Peek() |> ignore
printfn $"Popping '{numbers.Pop()}'"
// Create a copy of the stack, using the ToArray method and the
// constructor that accepts an IEnumerable<T>.
let stack2 = numbers.ToArray() |> Stack
printfn "\nContents of the first copy:"
for number in stack2 do
printfn $"{number}"
// Create an array twice the size of the stack and copy the
// elements of the stack, starting at the middle of the
// array.
let array2 = numbers.Count * 2 |> Array.zeroCreate
numbers.CopyTo(array2, numbers.Count)
// Create a second stack, using the constructor that accepts an
// IEnumerable(Of T).
let stack3 = Stack array2
printfn "\nContents of the second copy, with duplicates and nulls:"
for number in stack3 do
printfn $"{number}"
printfn
$"""
stack2.Contains "four" = {stack2.Contains "four"}"""
printfn "\nstack2.Clear()"
stack2.Clear()
printfn $"\nstack2.Count = {stack2.Count}"
// This code example produces the following output:
// five
// four
// three
// two
// one
//
// Popping 'five'
// Peek at next item to destack: four
// Popping 'four'
//
// Contents of the first copy:
// one
// two
// three
//
// Contents of the second copy, with duplicates and nulls:
// one
// two
// three
//
// stack2.Contains("four") = False
//
// stack2.Clear()
//
// stack2.Count = 0
Imports System.Collections.Generic
Module Example
Sub Main
Dim numbers As New Stack(Of String)
numbers.Push("one")
numbers.Push("two")
numbers.Push("three")
numbers.Push("four")
numbers.Push("five")
' A stack can be enumerated without disturbing its contents.
For Each number As String In numbers
Console.WriteLine(number)
Next
Console.WriteLine(vbLf & "Popping '{0}'", numbers.Pop())
Console.WriteLine("Peek at next item to pop: {0}", _
numbers.Peek())
Console.WriteLine("Popping '{0}'", numbers.Pop())
' Create another stack, using the ToArray method and the
' constructor that accepts an IEnumerable(Of T). Note that
' the order of items on the new stack is reversed.
Dim stack2 As New Stack(Of String)(numbers.ToArray())
Console.WriteLine(vbLf & "Contents of the first copy:")
For Each number As String In stack2
Console.WriteLine(number)
Next
' Create an array twice the size of the stack, compensating
' for the fact that Visual Basic allocates an extra array
' element. Copy the elements of the stack, starting at the
' middle of the array.
Dim array2((numbers.Count * 2) - 1) As String
numbers.CopyTo(array2, numbers.Count)
' Create a second stack, using the constructor that accepts an
' IEnumerable(Of T). The elements are reversed, with the null
' elements appearing at the end of the stack when enumerated.
Dim stack3 As New Stack(Of String)(array2)
Console.WriteLine(vbLf & _
"Contents of the second copy, with duplicates and nulls:")
For Each number As String In stack3
Console.WriteLine(number)
Next
Console.WriteLine(vbLf & "stack2.Contains(""four"") = {0}", _
stack2.Contains("four"))
Console.WriteLine(vbLf & "stack2.Clear()")
stack2.Clear()
Console.WriteLine(vbLf & "stack2.Count = {0}", _
stack2.Count)
End Sub
End Module
' This code example produces the following output:
'
'five
'four
'three
'two
'one
'
'Popping 'five'
'Peek at next item to pop: four
'Popping 'four'
'
'Contents of the first copy:
'one
'two
'three
'
'Contents of the second copy, with duplicates and nulls:
'one
'two
'three
'
'
'
'
'stack2.Contains("four") = False
'
'stack2.Clear()
'
'stack2.Count = 0
備註
Stack<T> 會實作為陣列。
當您需要暫存記憶體以取得資訊時,堆疊和佇列很有用;也就是說,當您想要在擷取其值之後捨棄專案時。 如果您需要以與儲存在集合中相同順序來存取資訊,請使用 Queue<T>。 如果您需要以反向順序存取資訊,請使用 System.Collections.Generic.Stack<T>。
當您需要同時從多個線程存取集合時,請使用 System.Collections.Concurrent.ConcurrentStack<T> 和 System.Collections.Concurrent.ConcurrentQueue<T> 類型。
System.Collections.Generic.Stack<T> 的常見用法是在呼叫其他程式時保留變數狀態。
您可以在 System.Collections.Generic.Stack<T> 及其元素上執行三個主要作業:
Stack<T> 的容量是 Stack<T> 可以保存的項目數目。 當元素新增至 Stack<T>時,重新配置內部數位會自動增加容量。 呼叫 TrimExcess可以減少容量。
如果 Count 小於堆疊的容量,Push 是 O(1) 作業。 如果需要增加容量以容納新元素,Push 會變成 O(n
)作業,其中 n
Count。
Pop 是 O(1) 作業。
Stack<T> 接受 null
作為參考型別的有效值,並允許重複的專案。
建構函式
Stack<T>() |
初始化空的 Stack<T> 類別的新實例,並具有預設的初始容量。 |
Stack<T>(IEnumerable<T>) |
初始化 Stack<T> 類別的新實例,這個實例包含從指定集合複製的元素,而且有足夠的容量容納複製的項目數目。 |
Stack<T>(Int32) |
初始化空的 Stack<T> 類別的新實例,並具有指定的初始容量或預設的初始容量,無論哪一個更大。 |
屬性
Capacity |
取得內部數據結構可以保留而不重設大小的元素總數。 |
Count |
取得包含在 Stack<T>中的項目數目。 |
方法
Clear() |
從 Stack<T>移除所有物件。 |
Contains(T) |
判斷專案是否在 Stack<T>中。 |
CopyTo(T[], Int32) | |
EnsureCapacity(Int32) |
確保此 Stack 的容量至少為指定的 |
Equals(Object) |
判斷指定的物件是否等於目前的物件。 (繼承來源 Object) |
GetEnumerator() |
傳回 Stack<T>的列舉值。 |
GetHashCode() |
做為預設哈希函式。 (繼承來源 Object) |
GetType() |
取得目前實例的 Type。 (繼承來源 Object) |
MemberwiseClone() |
建立目前 Object的淺層複本。 (繼承來源 Object) |
Peek() |
傳回位於 Stack<T> 頂端的物件,而不移除它。 |
Pop() |
拿掉並傳回位於 Stack<T>頂端的物件。 |
Push(T) |
在 Stack<T>頂端插入物件。 |
ToArray() |
將 Stack<T> 複製到新的數位。 |
ToString() |
傳回表示目前 物件的字串。 (繼承來源 Object) |
TrimExcess() |
如果這個數位小於目前容量的90%,請將容量設定為 Stack<T>中的實際項目數目。 |
TrimExcess(Int32) |
將 Stack<T> 物件的容量設定為指定的項目數。 |
TryPeek(T) |
傳回值,這個值表示 Stack<T>頂端是否有 物件,如果存在物件,請將它複製到 |
TryPop(T) |
傳回值,指出 Stack<T>頂端是否有 物件,如果存在物件,請將它複製到 |
明確介面實作
ICollection.CopyTo(Array, Int32) |
從特定 Array 索引開始,將 ICollection 的專案複製到 Array。 |
ICollection.IsSynchronized |
取得值,指出是否同步存取 ICollection (線程安全)。 |
ICollection.SyncRoot |
取得對象,這個物件可用來同步存取 ICollection。 |
IEnumerable.GetEnumerator() |
傳回逐一查看集合的列舉值。 |
IEnumerable<T>.GetEnumerator() |
傳回逐一查看集合的列舉值。 |
擴充方法
適用於
執行緒安全性
此類型的公用靜態 (Shared
) 成員是安全線程。 不保證任何實例成員都是安全線程。
只要集合未修改,Stack<T> 就可以同時支援多個讀取器。 即便如此,透過集合列舉本質上不是安全線程的程式。 若要保證列舉期間的線程安全性,您可以在整個列舉期間鎖定集合。 若要允許多個線程存取集合以進行讀取和寫入,您必須實作自己的同步處理。