字典中值的检索
您可以使用字典类的get()方法检索特定键的值。如果将特定元素的键作为此方法的参数传递,则它将返回指定键的值(作为对象)。如果字典在指定的键下不包含任何元素,则返回null。
您可以使用此方法检索字典中的值。
示例
import java.util.Hashtable; import java.util.Dictionary; public class RetrievingElements { public static void main(String args[]) { Dictionary dic = new Hashtable(); dic.put("Ram", 94.6); dic.put("Rahim", 92); dic.put("Robert", 85); dic.put("Roja", 93); dic.put("Raja", 75); Object ob = dic.get("Ram"); System.out.println("Value of the specified key :"+ ob); } }
输出
Value of the specified key :94.6
广告