Método de elemento de cola() en Java

El método element() de Queue Interface devuelve el elemento al frente del contenedor. No elimina el elemento en el contenedor. Este método devuelve la cabeza de la cola.

Este método difiere de peek() solo en que lanza una excepción si esta cola está vacía.

Sintaxis:

E element()

Devoluciones: este método devuelve la cabeza de la cola.

Excepción: la función arroja NoSuchElementException cuando la cola está vacía y se llama a la función.

Los siguientes programas ilustran el método element() de Queue:

Programa 1: Con la ayuda de LinkedList .

// Java Program Demonstrate element()
// method of Queue
  
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
        throws IllegalStateException
    {
  
        // create object of Queue
        Queue<Integer> Q
            = new LinkedList<Integer>();
  
        // Add numbers to end of Queue
        Q.add(7855642);
        Q.add(35658786);
        Q.add(5278367);
        Q.add(74381793);
  
        // print queue
        System.out.println("Queue: " + Q);
  
        // print head
        System.out.println("Queue's head: " + Q.element());
    }
}
Producción:

Queue: [7855642, 35658786, 5278367, 74381793]
Queue's head: 7855642

Programa 2: Con la ayuda de ArrayDeque .

// Java Program Demonstrate element()
// method of Queue
  
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
        throws IllegalStateException
    {
  
        // create object of Queue
        Queue<Integer> Q
            = new ArrayDeque<Integer>();
  
        // Add numbers to end of Queue
        Q.add(7855642);
        Q.add(35658786);
        Q.add(5278367);
        Q.add(74381793);
  
        // print queue
        System.out.println("Queue: " + Q);
  
        // print head
        System.out.println("Queue's head: " + Q.element());
    }
}
Producción:

Queue: [7855642, 35658786, 5278367, 74381793]
Queue's head: 7855642

Programa 3: Con la ayuda de LinkedBlockingDeque .

// Java Program Demonstrate element()
// method of Queue
  
import java.util.*;
import java.util.concurrent.LinkedBlockingDeque;
  
public class GFG {
    public static void main(String[] args)
        throws IllegalStateException
    {
  
        // create object of Queue
        Queue<Integer> Q
            = new LinkedBlockingDeque<Integer>();
  
        // Add numbers to end of Queue
        Q.add(7855642);
        Q.add(35658786);
        Q.add(5278367);
        Q.add(74381793);
  
        // print queue
        System.out.println("Queue: " + Q);
  
        // print head
        System.out.println("Queue's head: " + Q.element());
    }
}
Producción:

Queue: [7855642, 35658786, 5278367, 74381793]
Queue's head: 7855642

Programa 4: Con la ayuda de ConcurrentLinkedDeque .

// Java Program Demonstrate element()
// method of Queue
  
import java.util.*;
import java.util.concurrent.ConcurrentLinkedDeque;
  
public class GFG {
    public static void main(String[] args)
        throws IllegalStateException
    {
  
        // create object of Queue
        Queue<Integer> Q
            = new ConcurrentLinkedDeque<Integer>();
  
        // Add numbers to end of Queue
        Q.add(7855642);
        Q.add(35658786);
        Q.add(5278367);
        Q.add(74381793);
  
        // print queue
        System.out.println("Queue: " + Q);
  
        // print head
        System.out.println("Queue's head: " + Q.element());
    }
}
Producción:

Queue: [7855642, 35658786, 5278367, 74381793]
Queue's head: 7855642

Los siguientes programas ilustran las excepciones lanzadas por este método :

Programa 5: Para mostrar NoSuchElementException .

// Java Program Demonstrate element()
// method of Queue
  
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
        throws IllegalStateException
    {
  
        // create object of Queue
        Queue<Integer> Q
            = new LinkedList<Integer>();
  
        // Add numbers to end of Queue
        Q.add(7855642);
        Q.add(35658786);
        Q.add(5278367);
        Q.add(74381793);
  
        // print queue
        System.out.println("Queue: " + Q);
  
        // print head
        System.out.println("Queue's head: " + Q.element());
  
        Q.clear();
  
        // print queue
        System.out.println("Queue: " + Q);
  
        try {
            // Queue is empty now hence exception
            System.out.println("Queue's head: " + Q.element());
        }
        catch (Exception e) {
            System.out.println("Exception: " + e);
        }
    }
}
Producción:

Queue: [7855642, 35658786, 5278367, 74381793]
Queue's head: 7855642
Queue: []
Exception: java.util.NoSuchElementException

Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/Queue.html#element–

Publicación traducida automáticamente

Artículo escrito por gopaldave y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *