Java ConcurrentLinkedDeque size()方法
Java中ConcurrentLinkedDeque类的 size() 方法用于查找ConcurrentLinkedDeque容器中的元素数量。换句话说,这个方法告诉我们容器的当前容量。该方法返回的值为积分类型,如果容器中的元素多于整数的最大值,那么该方法将返回整数的最大值,即Integer.MAX_VALUE。
语法 :
ConcurrentLinkedDeque.size()
参数 :该方法不接受任何参数。
返回值 :该方法返回一个积分值,即ConcurrentLinkedDeque容器的当前大小。
以下程序说明了ConcurrentLinkedDeque的size()方法:
// 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);
}
}
输出
ConcurrentLinkedDeque: [475, 1009, 70, 12]
Size of the collection is: 4
注意 :与Java中的其他集合不同,这个方法不会在恒定时间内对ConcurrentLinkedDeque进行大小计算操作,因为这些deques的异步性,在执行这个方法的过程中,大小有可能发生变化,在这种情况下,返回的结果将是不准确的。这个方法在并发应用中通常不是很有用。
Reference : https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/ConcurrentLinkedDeque.html#size()