• Java 数据结构教程

哈希表中值的检索



您可以使用 get() 方法检索特定键的值。如果您将特定元素的键作为此方法的参数传递,它将返回指定键的值(作为对象)。如果哈希表在指定的键下不包含任何元素,则返回 null。

您可以使用此方法检索哈希表中的值。

示例

import java.util.Hashtable;
public class RetrievingElements {
   public static void main(String args[]) {
      Hashtable hashTable = new Hashtable();
      hashTable.put("Ram", 94.6);
      hashTable.put("Rahim", 92);
      hashTable.put("Robert", 85);
      hashTable.put("Roja", 93);
      hashTable.put("Raja", 75);      
      
      Object ob = hashTable.get("Ram");
      System.out.println("Value of the specified key :"+ ob);            
   }
}

输出

Value of the specified key :94.6
广告