Friday, October 17, 2025
HomeLanguagesJavaConcurrentLinkedDeque size() method in Java

ConcurrentLinkedDeque size() method in Java

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()
 

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS