A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/java/priorityqueue-offer-method-in-java/ below:

PriorityQueue offer() Method in Java

PriorityQueue offer() Method in Java

Last Updated : 11 Jul, 2025

The java.util.PriorityQueue.offer() method is used to insert a particular element into the Priority Queue. It acts similar to the

add()

method of Priority Queue.

Syntax:
Priority_Queue.offer(Object element)
Parameters:

The parameter

element

is of the type PriorityQueue and refers to the element to be inserted into the Queue.

Return Value:

The method returns True if the value is successfully inserted into the queue.

Exceptions:

The method can throw two types of exceptions:

Below programs illustrate the java.util.PriorityQueue.offer() method

Program 1: Java
// Java code to illustrate offer()
import java.util.*;

public class PriorityQueueDemo {
    public static void main(String args[])
    {
        // Creating an empty PriorityQueue
        PriorityQueue<String> queue = new PriorityQueue<String>();

        // Use add() method to add elements into the Queue
        queue.add("Welcome");
        queue.add("To");
        queue.add("Geeks");
        queue.add("4");
        queue.add("Geeks");

        // Displaying the PriorityQueue
        System.out.println("Initial PriorityQueue: " + queue);

        // Inserting using offer()
        queue.offer("The");
        queue.offer("Priority");
        queue.offer("Class");

        // Displaying th final Queue
        System.out.println("Priority queue after Insertion: " + queue);
    }
}
Output:
Initial PriorityQueue: [4, Geeks, To, Welcome, Geeks]
Priority queue after Insertion: [4, Class, Priority, Geeks, Geeks, To, The, Welcome]
Program 2: Java
// Java code to illustrate offer()
import java.util.*;

public class PriorityQueueDemo {
    public static void main(String args[])
    {
        // Creating an empty PriorityQueue
        PriorityQueue<Integer> queue = new PriorityQueue<Integer>();

        // Use add() method to add elements into the Queue
        queue.add(10);
        queue.add(15);
        queue.add(30);
        queue.add(20);
        queue.add(5);

        // Displaying the PriorityQueue
        System.out.println("Initial PriorityQueue: " + queue);

        // Inserting using offer()
        queue.offer(100);
        queue.offer(120);
        queue.offer(150);

        // Displaying th final Queue
        System.out.println("Priority queue after Insertion: " + queue);
    }
}
Output:
Initial PriorityQueue: [5, 10, 30, 20, 15]
Priority queue after Insertion: [5, 10, 30, 20, 15, 100, 120, 150]


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4