描述
所述java.util.Dictionary.size()方法返回的条目(distinct keys)在本词典数。
声明
以下是java.util.Dictionary.size()方法的声明
public abstract int size()
参数
NA
返回值
此方法返回此字典中的键数。
异常
NA
实例
以下示例显示了java.util.Dictionary.size()方法的用法。
package com.tutorialspoint;
import java.util.*;
public class DictionaryDemo {
public static void main(String[] args) {
// Create a new hasthtable
Dictionary d = new Hashtable();
// Put some elements
d.put("1", "Chocolate");
d.put("2", "Cocoa");
d.put("5", "Coffee");
// print the size of the dictionary
System.out.println("Size of dictionary:" + d.size());;
}
}
让我们编译并运行上面的程序,这将产生以下结果
Size of dictionary:3