Home »
Java programming language
Java PriorityQueue clear() Method with Example
PriorityQueue Class clear() method: Here, we are going to learn about the clear() method of PriorityQueue Class with its syntax and example.
Submitted by Preeti Jain, on March 11, 2020
PriorityQueue Class clear() method
- clear() method is available in java.util package.
- clear() method is used to remove all the objects from this PriorityQueue.
- clear() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
- clear() method does not throw an exception at the time of clearing objects from the queue.
Syntax:
public void clear();
Parameter(s):
- It does not accept any parameter.
Return value:
The return type of the method is void, it returns nothing.
Example:
// Java program to demonstrate the example
// of void clear() method of
// PriorityQueue
import java.util.*;
public class ClearOfPriorityQueue {
public static void main(String args[]) {
// Instantiate PriorityQueue
PriorityQueue < String > pq = new PriorityQueue < String > ();
// By using add() method is add
// the given element into priority
// queue
pq.add("C");
pq.add("C++");
pq.add("JAVA");
pq.add("PHP");
pq.add("ANDROID");
// Display PriorityQueue
System.out.println("PriorityQueue: " + pq);
// By using clear() method is to
// remove all the existing elements
// from this PriorityQueue
pq.clear();
// Display Updated PriorityQueue
System.out.println("pq.clear(): " + pq);
}
}
Output
PriorityQueue: [ANDROID, C, JAVA, PHP, C++]
pq.clear(): []