ConcurrentLinkedDeque size() method in Java Last Updated : 11 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report The size() method of ConcurrentLinkedDeque class in Java is used to find the number of elements present in the ConcurrentLinkedDeque container. In other words, this method tells the current capacity of the container. The value returned by this method is of integral type and in case if the container container more elements than the maximum value of an integer then this method returns the max value of integer i.e., Integer.MAX_VALUE. Syntax: ConcurrentLinkedDeque.size() Parameters: This method doesn't accepts any parameter.Return Value: This method returns an integral value which is the current size of the ConcurrentLinkedDeque container.Below program illustrates size() method of ConcurrentLinkedDeque: Java // Java Program to demonstrate the // size of ConcurrentLinkedDeque import java.util.concurrent.*; class ConcurrentLinkedDequeDemo { public static void main(String[] args) { // Create a ConcurrentLinkedDeque // using ConcurrentLinkedDeque() constructor ConcurrentLinkedDeque<Integer> cld = new ConcurrentLinkedDeque<Integer>(); // Adding elements to the collection cld.addFirst(12); cld.addFirst(70); cld.addFirst(1009); cld.addFirst(475); // Displaying the ConcurrentLinkedDeque System.out.println("ConcurrentLinkedDeque: " + cld); // Calculate size int size = cld.size(); System.out.println("Size of the collection is: " + size); } } Output: ConcurrentLinkedDeque: [475, 1009, 70, 12] Size of the collection is: 4 Note: Unlike for other collections in Java, this method does not perform the size calculation operation for ConcurrentLinkedDeque in constant time because of the asynchronous nature of these deques and it is possible for the size to change during execution of this method, in which case the returned result will be inaccurate. This method is typically not very useful in concurrent applications.Reference: https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/ConcurrentLinkedDeque.html#size() Comment More infoAdvertise with us Next Article ConcurrentLinkedDeque element() method in Java S saigopalCheela Follow Improve Article Tags : Java Practice Tags : Java Similar Reads ConcurrentLinkedQueue size() method in Java The size() method of ConcurrentLinkedQueue is used to returns number of elements that this ConcurrentLinkedQueue contains. Syntax: public int size() Returns: This method number of elements in this ConcurrentLinkedQueue. Below programs illustrate size() method of ConcurrentLinkedQueue: Example 1: Jav 2 min read ConcurrentLinkedDeque peekLast() method in Java The java.util.concurrent.ConcurrentLinkedDeque.peekLast() is an in-built method in Java which retrieves the last element of this deque container without removing it. The function returns NULL if the deque is empty. Syntax: Conn_Linked_Deque.peekLast() Parameters: The function does not accepts any pa 2 min read ConcurrentLinkedDeque addLast() method in Java The java.util.concurrent.ConcurrentLinkedDeque.addLast() is an in-built function in Java which inserts the specified element to the end of the deque. Syntax: conn_linked_deque.addLast(elem) Parameter: The method accepts only a single parameter elem which is to be added to the end of the ConcurrentLi 2 min read ConcurrentLinkedDeque getLast() Method in Java The java.util.concurrent.ConcurrentLinkedDeque.getLast() method is an in-built method in Java which returns the last element of the deque container. Syntax: Conn_Linked_Deque.getLast() Parameters: The method does not accept any parameter. Return Value: The method returns the last element present in 2 min read ConcurrentLinkedDeque element() method in Java The java.util.concurrent.ConcurrentLinkedDeque.element() is an in-built function in java which retrieves but does not remove the head of the queue represented by deque i.e the first element of deque.Syntax: conn_linked_deque.element() Parameter: This method has no parameters.Return Value: This metho 2 min read ConcurrentLinkedQueue add() method in Java The add() method of ConcurrentLinkedQueue is used to insert the element, passed as parameter to add() of ConcurrentLinkedQueue, at the tail of this ConcurrentLinkedQueue. This method returns True if insertion is successful. ConcurrentLinkedQueue is unbounded, so this method will never throw IllegalS 2 min read Like