Este método (se incluye en el espacio de nombres System.Collections ) se usa para devolver el objeto en la parte superior de la pila sin eliminarlo. Este método es similar al método Pop, pero Peek no modifica la pila.
Sintaxis:
public virtual object Peek ();
Valor de retorno: Devuelve el objeto en la parte superior de la pila.
Excepción: Llamar al método Peek() en la pila vacía lanzará InvalidOperationException . Por lo tanto, siempre busque elementos en la pila antes de recuperar elementos usando el método Peek().
A continuación se dan algunos ejemplos para entender la implementación de una mejor manera.
Ejemplo 1:
// C# code to illustrate the // Stack.Peek Method using System; using System.Collections; class GFG { // Driver code public static void Main() { // Creating a Stack Stack myStack = new Stack(); // Inserting the elements into the Stack myStack.Push("1st Element"); myStack.Push("2nd Element"); myStack.Push("3rd Element"); myStack.Push("4th Element"); myStack.Push("5th Element"); myStack.Push("6th Element"); // Displaying the count of elements // contained in the Stack Console.Write("Total number of elements"+ " in the Stack are : "); Console.WriteLine(myStack.Count); // Displaying the top element of Stack // without removing it from the Stack Console.WriteLine("Element at the top is : " + myStack.Peek()); // Displaying the top element of Stack // without removing it from the Stack Console.WriteLine("Element at the top is : " + myStack.Peek()); // Displaying the count of elements // contained in the Stack Console.Write("Total number of elements "+ "in the Stack are : "); Console.WriteLine(myStack.Count); } }
Producción:
Total number of elements in the Stack are : 6 Element at the top is : 6th Element Element at the top is : 6th Element Total number of elements in the Stack are : 6
Ejemplo 2:
// C# code to illustrate the // Stack.Peek Method using System; using System.Collections; class GFG { // Driver code public static void Main() { // Creating a Stack Stack myStack = new Stack(); // Displaying the top element of Stack // without removing it from the Stack // Calling Peek() method on empty stack // will throw InvalidOperationException. Console.WriteLine("Element at the top is : " + myStack.Peek()); } }
Error de tiempo de ejecución:
Excepción no controlada:
System.InvalidOperationException: Pila vacía.
Referencia:
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA