ArrayBlockingQueue clear() Method in Java
ArrayBlockingQueue is bounded, blocking queue that stores the elements internally backed by an array.
- ArrayBlockingQueue class is a member of the Java Collections Framework.
- Bounded means it will have a fixed size, you can not store number the elements more than the capacity of the queue.
- The queue also follows FIFO (first-in-first-out) rule for storing and removing elements from the queue.
- If you try to put an element into a full queue or to take an element from an empty queue then the queue will block you.
The clear() method removes all of the elements from this queue. After applying this method the queue will become empty.
Syntax:
public void clear()
Below programs illustrate clear() method of ArrayBlockingQueue.
Example 1
// Java Program Demonstrate clear() // method of ArrayBlockingQueue. import java.util.concurrent.ArrayBlockingQueue; public class GFG { public static void main(String[] args) { // define capacity of ArrayBlockingQueue int capacity = 5; // create object of ArrayBlockingQueue ArrayBlockingQueue<Integer> queue = new ArrayBlockingQueue<Integer>(capacity); // Add element to ArrayBlockingQueue queue.add(23); queue.add(32); queue.add(45); queue.add(12); // print queue after adding numbers System.out.println("After addding numbers"); System.out.println(queue); // Apply clear() method queue.clear(); // print queue after clear() operation System.out.println("After clear() method"); System.out.println(queue); } } |
Output : After addding numbers [23, 32, 45, 12] After clear() method []
Example 2
// Java Program Demonstrate clear() // method of ArrayBlockingQueue. import java.util.concurrent.ArrayBlockingQueue; public class GFG { public static void main(String[] args) { // define capacity of ArrayBlockingQueue int capacity = 5; // create object of ArrayBlockingQueue to store 5 names ArrayBlockingQueue<String> names = new ArrayBlockingQueue<String>(capacity); // Add element to ArrayBlockingQueue names.add("Aman"); names.add("Siddhant"); names.add("Mahafuj"); names.add("Raunak"); names.add("Suvo"); // print queue after adding numbers System.out.println("List of Names: " + names); System.out.println("Remaining Capacity: " + names.remainingCapacity()); // Apply clear() method names.clear(); // print queue after clear() operation System.out.println("List of Names: " + names); System.out.println("Remaining Capacity: " + names.remainingCapacity()); } } |
Output : List of Names: [Aman, Siddhant, Mahafuj, Raunak, Suvo] Remaining Capacity: 0 List of Names: [] Remaining Capacity: 5
Reference:
https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/ArrayBlockingQueue.html#clear()
Recommended Posts:
- ArrayBlockingQueue add() method in Java
- ArrayBlockingQueue contains() method in Java
- ArrayBlockingQueue take() method in Java
- ArrayBlockingQueue put() method in Java
- ArrayBlockingQueue spliterator() method in Java
- ArrayBlockingQueue iterator() Method in Java
- ArrayBlockingQueue drainTo() Method in Java
- ArrayBlockingQueue toString() Method in Java
- ArrayBlockingQueue remove() method in Java
- ArrayBlockingQueue size() Method in Java
- ArrayBlockingQueue peek() Method in Java
- ArrayBlockingQueue remainingCapacity() Method in Java
- ArrayBlockingQueue toArray() Method in Java
- ArrayBlockingQueue offer() Method in Java
- ArrayBlockingQueue poll() Method in Java
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



