本文整理匯總了C#中System.Collections.Stack.Peek方法的典型用法代碼示例。如果您正苦於以下問題:C# Stack.Peek方法的具體用法?C# Stack.Peek怎麽用?C# Stack.Peek使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Collections.Stack
的用法示例。
在下文中一共展示了Stack.Peek方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Main
//引入命名空間
using System;
using System.Collections;
public class SamplesStack {
public static void Main() {
// Creates and initializes a new Stack.
Stack myStack = new Stack();
myStack.Push( "The" );
myStack.Push( "quick" );
myStack.Push( "brown" );
myStack.Push( "fox" );
// Displays the Stack.
Console.Write( "Stack values:" );
PrintValues( myStack, '\t' );
// Removes an element from the Stack.
Console.WriteLine( "(Pop)\t\t{0}", myStack.Pop() );
// Displays the Stack.
Console.Write( "Stack values:" );
PrintValues( myStack, '\t' );
// Removes another element from the Stack.
Console.WriteLine( "(Pop)\t\t{0}", myStack.Pop() );
// Displays the Stack.
Console.Write( "Stack values:" );
PrintValues( myStack, '\t' );
// Views the first element in the Stack but does not remove it.
Console.WriteLine( "(Peek)\t\t{0}", myStack.Peek() );
// Displays the Stack.
Console.Write( "Stack values:" );
PrintValues( myStack, '\t' );
}
public static void PrintValues( IEnumerable myCollection, char mySeparator ) {
foreach ( Object obj in myCollection )
Console.Write( "{0}{1}", mySeparator, obj );
Console.WriteLine();
}
}
輸出:
Stack values: fox brown quick The (Pop) fox Stack values: brown quick The (Pop) brown Stack values: quick The (Peek) quick Stack values: quick The
示例2: Stack.Peek()
//引入命名空間
using System;
using System.Collections;
public class TesterStackDemo{
public void Run(){
Stack intStack = new Stack();
for (int i = 0;i<8;i++){
intStack.Push(i*5);
}
Console.Write( "intStack values:\t" );
DisplayValues( intStack );
Console.WriteLine( "\n(Pop)\t{0}",intStack.Pop() );
Console.Write( "intStack values:\t" );
DisplayValues( intStack );
Console.WriteLine( "\n(Pop)\t{0}",intStack.Pop() );
Console.Write( "intStack values:\t" );
DisplayValues( intStack );
Console.WriteLine( "\n(Peek) \t{0}",intStack.Peek() );
Console.Write( "intStack values:\t" );
DisplayValues( intStack );
}
public static void DisplayValues(IEnumerable myCollection ){
foreach (object o in myCollection){
Console.WriteLine(o);
}
}
static void Main()
{
TesterStackDemo t = new TesterStackDemo();
t.Run();
}
}