int size()
描述 (Description)
size()方法用于返回此映射中键 - 值映射的数量。
声明 (Declaration)
以下是java.util.WeakHashMap.size()方法的声明。public int size()
参数 (Parameters)
NA
返回值 (Return Value)
方法调用返回此映射中键 - 值映射的数量。
异常 (Exception)
NA
例子 (Example)
以下示例显示了java.util.WeakHashMap.size()方法的用法。package com.iowiki;
import java.util.Map;
import java.util.WeakHashMap;
public class WeakHashMapDemo {
public static void main(String[] args) {
Map weakHashMap = new WeakHashMap();
// put keys and values in the Map
System.out.println("Putting values into the Map");
weakHashMap.put("1", "first");
weakHashMap.put("2", "two");
weakHashMap.put("3", "three");
// checking the size of the Map
System.out.println("Map size: "+weakHashMap.size());
}
}
让我们编译并运行上面的程序,这将产生以下结果。Putting values into the Map
Map size: 3