Este método devuelve el objeto al principio de la cola sin eliminarlo. Este método es similar al método Dequeue, pero Peek no modifica la cola y es una operación O(1). Este método se incluye en el espacio de nombres System.Collections .
Sintaxis:
public virtual object Peek ();
Valor de retorno: el objeto al principio de la cola.
Excepción: este método dará InvalidOperationException si la cola está vacía.
Los siguientes programas ilustran el uso del método mencionado anteriormente:
Ejemplo 1:
// C# code to illustrate the // Queue.Peek Method using System; using System.Collections; class GFG { // Driver code public static void Main() { // Creating a Queue Queue myQueue = new Queue(); // Inserting the elements into the Queue myQueue.Enqueue("1st Element"); myQueue.Enqueue("2nd Element"); myQueue.Enqueue("3rd Element"); myQueue.Enqueue("4th Element"); myQueue.Enqueue("5th Element"); myQueue.Enqueue("6th Element"); // Displaying the count of elements // contained in the Queue Console.Write("Total number of elements in the Queue are : "); Console.WriteLine(myQueue.Count); // Displaying the beginning element of Queue // without removing it from the Queue Console.WriteLine("Element at the beginning is : " + myQueue.Peek()); // Displaying the beginning element of Queue // without removing it from the Queue Console.WriteLine("Element at the beginning is : " + myQueue.Peek()); // Displaying the count of elements // contained in the Queue Console.Write("Total number of elements in the Queue are : "); Console.WriteLine(myQueue.Count); } }
Producción:
Total number of elements in the Queue are : 6 Element at the beginning is : 1st Element Element at the beginning is : 1st Element Total number of elements in the Queue are : 6
Ejemplo 2:
// C# code to illustrate the // Queue.Peek Method using System; using System.Collections; class GFG { // Driver code public static void Main() { // Creating a Queue Queue myQueue = new Queue(); // Displaying the beginning element of Queue // without removing it from the Queue // Calling Peek() method on empty Queue // will throw InvalidOperationException. Console.WriteLine("Element at the beginning is : " + myQueue.Peek()); } }
Error de tiempo de ejecución:
Excepción no controlada:
System.InvalidOperationException: Cola 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