VOOZH about

URL: https://www.geeksforgeeks.org/java/queue-add-method-in-java/

⇱ Queue add() method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Queue add() method in Java

Last Updated : 11 Jul, 2025

The add(E e) method of Queue Interface inserts the element passed in the parameter to the end of the queue if there is space. If the Queue is capacity restricted and no space is left for insertion, it returns an IllegalStateException. The function returns true on successful insertion. Syntax:

boolean add(E e)

Parameters: This method accepts a mandatory parameter e which is the element to be inserted in the end of the Queue. Returns: This method returns true on successful insertion. Exceptions: The function throws four exceptions which are described as below:

  • ClassCastException: when the class of the element to be entered prevents it from being added to this container.
  • IllegalStateException: when the capacity of the container is full and insertion is done.
  • IllegalArgumentException: when some property of the element prevents it to be added to the queue.
  • NullPointerException: when the element to be inserted is passed as null and the Queue's interface does not allow null elements.

Below programs illustrate add() method of Queue: Program 1: With the help of LinkedList

Output:
Queue: [7855642, 35658786, 5278367, 74381793]

Program 2: With the help of ArrayDeque

Output:
Queue: [7855642, 35658786, 5278367, 74381793]

Program 3: With the help of LinkedBlockingDeque

Output:
Queue: [7855642, 35658786, 5278367, 74381793]

Program 4: With the help of ConcurrentLinkedDeque

Output:
Queue: [7855642, 35658786, 5278367, 74381793]

Below programs illustrate exceptions thrown by this method: Program 5: To show NullPointerException

Output:
Exception: java.lang.NullPointerException

Program 6: To show IllegalStateException

Output:
Exception: java.lang.IllegalStateException: Queue full

Time Complexity : O(1)

Note: The other two exceptions are internal and are caused depending on the compiler hence cannot be shown in the compiler. Reference: https://docs.oracle.com/javase/8/docs/api/java/util/Queue.html#add-E-

Comment