java.util.Dictionary.get()方法实例
java.util.Dictionary.get(Object key) 方法返回的是字典中给出的键的值。
声明
以下是java.util.Dictionary.get()方法的声明
public abstract V get(Object key)
参数
-
key -- 此字典的一个键。如果键没有映射到任何值,那么可以为null。
返回值
此方法返回到该键所映射在这个字典中的值。
异常
-
NA
例子
下面的示例演示java.util.Dictionary.get()方法的用法。
package com.yiibai; import java.util.*; public class DictionaryDemo { public static void main(String[] args) { // create a new hashtable Dictionary dict = new Hashtable(); // add elements in the hashtable dict.put("1", "Chocolate"); dict.put("2", "Cocoa"); dict.put("6", "Coffee"); // returns the elements associated with the key System.out.println(dict.get("6")); } }
让我们来编译和运行上面的程序,这将产生以下结果:
Coffee