VOOZH about

URL: https://www.geeksforgeeks.org/java/priorityqueue-clear-method-in-java/

⇱ PriorityQueue clear() Method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

PriorityQueue clear() Method in Java

Last Updated : 10 Dec, 2018
The Java.util.PriorityQueue.clear() method is used to remove all the elements from a PriorityQueue. Using the clear() method only clears all the element from the queue and does not delete the queue. In other words, we can say that the clear() method is used to only empty an existing PriorityQueue. Syntax:
Priority_Queue.clear()
Parameters: The method does not take any parameter Return Value: The function does not returns any value. Below programs illustrate the Java.util.PriorityQueue.clear() method: Program 1:
Output:
PriorityQueue: [4, Geeks, To, Welcome, Geeks]
The final Queue: []
Program 2:
Output:
PriorityQueue: [5, 10, 30, 20, 15]
The final Queue: []
Comment