📌  相关文章
📜  Java中的 ConcurrentSkipListMap size() 方法及示例

📅  最后修改于: 2022-05-13 01:54:33.280000             🧑  作者: Mango

Java中的 ConcurrentSkipListMap size() 方法及示例

Java .util.concurrent.ConcurrentSkipListMapsize()方法是Java中的一个内置函数,它返回映射到此映射的键的数量。 size() 方法不是一个固定时间的操作。如果映射包含多个 Integer.MAX_VALUE 元素,则返回映射的最大值。

句法:

public int size()

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

返回值:该函数返回此地图中的元素数量。

下面的程序说明了上述方法:

方案一:

// Java Program Demonstrate size()
// method of ConcurrentSkipListMap
  
import java.util.concurrent.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        // Initializing the map
        ConcurrentSkipListMap
            mpp = new ConcurrentSkipListMap();
  
        // Adding elements to this map
        for (int i = 1; i <= 5; i++)
            mpp.put(i, i);
  
        // print size of map
        System.out.println(mpp.size());
    }
}
输出:
5

方案二:

// Java Program Demonstrate size()
// method of ConcurrentSkipListMap
  
import java.util.concurrent.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        // Initializing the map
        ConcurrentSkipListMap
            mpp = new ConcurrentSkipListMap();
  
        // Adding elements to this map
        for (int i = 1; i <= 15; i++)
            mpp.put(i, i);
  
        // print size of map
        System.out.println(mpp.size());
    }
}
输出:
15

参考: https: Java/util/concurrent/ConcurrentSkipListMap.html#size–