The element() method of AbstractQueue retrieves, but does not remove, the head of this queue.
Syntax:
public E element()
Parameters: This method does not accept any parameters.
Returns: The method returns the head of the Queue.
Exception: The function throws an NoSuchElementException if the queue is empty.
Below programs illustrate element() method:
Program 1:
Output:
AbstractQueue1 contains : [10, 20, 30, 40, 50]
head : 10
Program 2:
import java.util.*;
import java.util.concurrent.LinkedBlockingQueue;
public class GFG1 {
public static void main(String[] argv)
throws Exception
{
try {
AbstractQueue<Integer>
AQ1 = new LinkedBlockingQueue<Integer>();
System.out.println( "AbstractQueue1 : " + AQ1.element());
}
catch (Exception e) {
System.out.println( "Exception is" + e);
}
}
}
|
Output:
Exception isjava.util.NoSuchElementException
Reference: https://docs.oracle.com/javase/8/docs/api/java/util/AbstractQueue.html#element–
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!