java.util.concurrent.ConcurrentSkipListMap的size()方法是Java中的内置函数,它返回映射到此映射的键数。 size()方法不是恒定时间操作。如果映射包含多个Integer.MAX_VALUE元素,则返回映射的最大值。
用法:
public int size()
参数:该函数不接受任何参数。
返回值:该函数返回此映射中的元素数。
以下示例程序旨在说明上述方法:
示例1:
// Java Program Demonstrate size()
// method of ConcurrentSkipListMap
import java.util.concurrent.*;
class GFG {
public static void main(String[] args)
{
// Initializing the map
ConcurrentSkipListMap<Integer, Integer>
mpp = new ConcurrentSkipListMap<Integer,
Integer>();
// 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
示例2:
// Java Program Demonstrate size()
// method of ConcurrentSkipListMap
import java.util.concurrent.*;
class GFG {
public static void main(String[] args)
{
// Initializing the map
ConcurrentSkipListMap<Integer, Integer>
mpp = new ConcurrentSkipListMap<Integer,
Integer>();
// 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://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentSkipListMap.html#size–
相关用法
- Java ConcurrentSkipListMap put()用法及代码示例
- Java ConcurrentSkipListMap isEmpty()用法及代码示例
- Java ConcurrentSkipListMap containsKey()用法及代码示例
- Java ConcurrentSkipListMap remove()用法及代码示例
- Java ConcurrentSkipListMap clone()用法及代码示例
- Java ConcurrentSkipListMap ceilingKey()用法及代码示例
- Java ConcurrentSkipListMap equals()用法及代码示例
- Java ConcurrentSkipListMap containsValue()用法及代码示例
- Java ConcurrentSkipListMap clear()用法及代码示例
- Java Files size()用法及代码示例
- Java Dictionary size()用法及代码示例
- Java ArrayList size()用法及代码示例
- Java SortedSet size()用法及代码示例
- Java List size()用法及代码示例
- Java AbstractMap size()用法及代码示例
注:本文由纯净天空筛选整理自Twinkl Bajaj大神的英文原创作品 ConcurrentSkipListMap size() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。