當前位置: 首頁>>代碼示例>>C#>>正文


C# Stack.Peek方法代碼示例

本文整理匯總了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();
   }
}
開發者ID:.NET開發者,項目名稱:System.Collections,代碼行數:46,代碼來源:Stack.Peek

輸出:

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();
        }
    }
開發者ID:C#程序員,項目名稱:System.Collections,代碼行數:33,代碼來源:Stack.Peek


注:本文中的System.Collections.Stack.Peek方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。