当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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–



相关用法


注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 ConcurrentSkipListSet size() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。