Java ConcurrentSkipListSet size()方法

Java ConcurrentSkipListSet size()方法

java.util.concurrent.ConcurrentSkipListSet.size() 方法是Java中的一个内置函数,它给出了集合中存在的元素的总计数。

语法

ConcurrentSkipListSet.size()

参数: 该函数不接受任何参数。

返回值: 该函数返回队列中的元素数。

下面的程序说明了ConcurrentSkipListSet.size()方法。

程序1 :

// Java Program Demonstrate size()
// method of ConcurrentSkipListSet
  
import java.util.concurrent.ConcurrentSkipListSet;
  
class ConcurrentSkipListSetSizeExample1 {
    public static void main(String[] args)
    {
        // Initializing the set
        ConcurrentSkipListSet<Integer> set = 
                       new ConcurrentSkipListSet<Integer>();
  
        // Adding elements to this set
        for (int i = 1; i <= 10; i++)
            set.add(i);
  
        // Printing the size of the set
        System.out.println("Number of elements in the set = "
                           + set.size());
        // Printing the elements
        System.out.println("set : " + set);
    }
}

输出。

Number of elements in the set = 10
set : [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

程序2

// Java Program Demonstrate size()
// method of ConcurrentSkipListSet
  
import java.util.concurrent.ConcurrentSkipListSet;
  
class ConcurrentSkipListSetSizeExample2 {
    public static void main(String[] args)
    {
        // Initializing the set
        ConcurrentSkipListSet<String> set = 
                         new ConcurrentSkipListSet<String>();
  
        // Adding elements to this set
        set.add("A");
        set.add("B");
        set.add("C");
        set.add("D");
        set.add("E");
  
        // Printing the size of the set
        System.out.println("Number of elements in the set = "
                           + set.size());
        // Printing the elements
        System.out.println("set : " + set);
    }
}

输出。

Number of elements in the set = 5
set : [A, B, C, D, E]

参考资料: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentSkipListSet.html#size-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程