ConcurrentLinkedDeque
is thread-safe, unbounded deque. Thenull
value is not permitted as an element. We can useConcurrentLinkedDeque
when multiple threads share a single deque.
The peek
method can be used to get the first element of the ConcurrentLinkedDeque
object.
public E peek()
This method doesn’t take any parameters.
The peek
method retrieves the first element of the deque
object. If the deque
is empty, then peek
returns null
The code below demonstrates how to use the peek
method.
import java.util.concurrent.ConcurrentLinkedDeque;class Peek {public static void main( String args[] ) {ConcurrentLinkedDeque<String> deque = new ConcurrentLinkedDeque<>();deque.add("1");deque.add("2");deque.add("3");System.out.println("The deque is " + deque);System.out.println("deque.peek() returns : " + deque.peek());}}
Line 1: We import the ConcurrentLinkedDeque
class.
Line 4: We create a ConcurrentLinkedDeque
object with the name deque
.
Lines 5 to 7: We use the add()
method of the deque
object to add three elements ("1"
,"2"
,"3"
) to the deque
.
Line 10: We use the peek()
method of the deque
object to get the first element of the deque
. In our case, peek()
returns 1
.