Tuesday, June 9, 2026
HomeLanguagesJavaAbstractQueue element() method in Java with examples

AbstractQueue element() method in Java with examples

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:




// Java program to illustrate the
// AbstractQueue element() method
import java.util.*;
import java.util.concurrent.LinkedBlockingQueue;
  
public class GFG1 {
    public static void main(String[] argv)
        throws Exception
    {
        // Creating object of AbstractQueue<Integer>
        AbstractQueue<Integer>
            AQ1 = new LinkedBlockingQueue<Integer>();
  
        // Populating AQ1
        AQ1.add(10);
        AQ1.add(20);
        AQ1.add(30);
        AQ1.add(40);
        AQ1.add(50);
  
        // print AQ
        System.out.println("AbstractQueue1 contains : " + AQ1);
  
        System.out.println("head : " + AQ1.element());
    }
}


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–

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

4 COMMENTS

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7018 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS