Open In App
Related Articles

AbstractQueue element() method in Java with examples

Improve Article
Improve
Save Article
Save
Like Article
Like

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:




// Java program to illustrate the
// AbstractQueue element() method
// NoSuchElementException
import java.util.*;
import java.util.concurrent.LinkedBlockingQueue;
  
public class GFG1 {
    public static void main(String[] argv)
        throws Exception
    {
        try {
            // Creating object of AbstractQueue<Integer>
            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!

Last Updated : 26 Nov, 2018
Like Article
Save Article
Similar Reads
Related Tutorials