ConcurrentLinkedQueue peek() method in Java
The peek() method of ConcurrentLinkedQueue is used to return the head of the ConcurrentLinkedQueue. It retrieves but does not remove, the head of this ConcurrentLinkedQueue. If the ConcurrentLinkedQueue is empty then this method returns null.
Syntax:
public E peek()
Returns: This method returns the head of this ConcurrentLinkedQueue without removing it.
Below programs illustrate peek() method of ConcurrentLinkedQueue:
Example 1:
// Java Program Demonstrate peek() // method of ConcurrentLinkedQueue import java.util.concurrent.*; public class GFG { public static void main(String[] args) { // create an ConcurrentLinkedQueue ConcurrentLinkedQueue<Integer> queue = new ConcurrentLinkedQueue<Integer>(); // Add Numbers to queue queue.add(4353); queue.add(7824); queue.add(78249); queue.add(8724); // Displaying the existing ConcurrentLinkedQueue System.out.println("ConcurrentLinkedQueue: " + queue); // find peek int response1 = queue.peek(); // print after applying peek method System.out.println("Head: " + response1); // Verifying that the head is not removed System.out.println("ConcurrentLinkedQueue after peek: " + queue); } } |
ConcurrentLinkedQueue: [4353, 7824, 78249, 8724] Head: 4353 ConcurrentLinkedQueue after peek: [4353, 7824, 78249, 8724]
Example 2:
// Java Program Demonstrate peek() // method of ConcurrentLinkedQueue import java.util.concurrent.*; public class GFG { public static void main(String[] args) { // create an ConcurrentLinkedQueue ConcurrentLinkedQueue<String> queue = new ConcurrentLinkedQueue<String>(); // Add String to queue queue.add("Aman"); queue.add("Amar"); queue.add("Sanjeet"); queue.add("Rabi"); // Displaying the existing ConcurrentLinkedQueue System.out.println("ConcurrentLinkedQueue: " + queue); // find peek of queue String response1 = queue.peek(); // print after applying peek method System.out.println("Head: " + response1); // Verifying that the head is not removed System.out.println("ConcurrentLinkedQueue after peek: " + queue); // remove some elements queue.poll(); queue.poll(); // Displaying the existing ConcurrentLinkedQueue System.out.println("Updated ConcurrentLinkedQueue: " + queue); // find peek of queue String response2 = queue.peek(); // print after applying peek method System.out.println("Head: " + response1); // Verifying that the head is not removed System.out.println("ConcurrentLinkedQueue after peek: " + queue); } } |
ConcurrentLinkedQueue: [Aman, Amar, Sanjeet, Rabi] Head: Aman ConcurrentLinkedQueue after peek: [Aman, Amar, Sanjeet, Rabi] Updated ConcurrentLinkedQueue: [Sanjeet, Rabi] Head: Aman ConcurrentLinkedQueue after peek: [Sanjeet, Rabi]
Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentLinkedQueue.html#peek–
Recommended Posts:
- ConcurrentLinkedQueue contains() method in Java
- ConcurrentLinkedQueue add() method in Java
- ConcurrentLinkedQueue toArray() Method in Java
- ConcurrentLinkedQueue spliterator() method in Java
- ConcurrentLinkedQueue iterator() method in Java
- ConcurrentLinkedQueue isEmpty() method in Java
- ConcurrentLinkedQueue offer() method in Java
- ConcurrentLinkedQueue poll() method in Java
- ConcurrentLinkedQueue remove() method in Java
- ConcurrentLinkedQueue addAll() method in Java
- ConcurrentLinkedQueue size() method in Java
- LinkedBlockingQueue peek() method in Java
- ConcurrentLinkedDeque peek() method in Java with Example
- PriorityQueue peek() Method in Java
- Queue peek() 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.



