Java 简明教程

Java HashMap Class

Introduction

Java HashMap 类是 Map 接口的基于哈希表实现,以下是有关 HashMap 的一些要点:

  1. 此类不保证映射的迭代顺序,特别是,它不保证随着时间的推移顺序保持不变。

  2. 此类允许空值和空键。

Class declaration

以下是 java.util.HashMap 类的声明:

public class HashMap<K,V>
   extends AbstractMap<K,V>
   implements Map<K,V>, Cloneable, Serializable

Parameters

以下是 java.util.HashMap 类的参数:

  1. K - 这是该映射维护的键的类型。

  2. V - 这是映射值的类型。

Class constructors

Class methods

Methods inherited

此类从以下类中继承方法:

  1. java.util.AbstractMap

  2. java.util.Object

  3. java.util.Map

Example

以下程序说明了 HashMap 集合支持的几种方法 -

import java.util.*;
public class HashMapDemo {

   public static void main(String args[]) {

      // Create a hash map
      HashMap hm = new HashMap();

      // Put elements to the map
      hm.put("Zara", new Double(3434.34));
      hm.put("Mahnaz", new Double(123.22));
      hm.put("Ayan", new Double(1378.00));
      hm.put("Daisy", new Double(99.22));
      hm.put("Qadir", new Double(-19.08));

      // Get a set of the entries
      Set set = hm.entrySet();

      // Get an iterator
      Iterator i = set.iterator();

      // Display elements
      while(i.hasNext()) {
         Map.Entry me = (Map.Entry)i.next();
         System.out.print(me.getKey() + ": ");
         System.out.println(me.getValue());
      }
      System.out.println();

      // Deposit 1000 into Zara's account
      double balance = ((Double)hm.get("Zara")).doubleValue();
      hm.put("Zara", new Double(balance + 1000));
      System.out.println("Zara's new balance: " + hm.get("Zara"));
   }
}

这会产生以下结果 −

Output

Daisy: 99.22
Ayan: 1378.0
Zara: 3434.34
Qadir: -19.08
Mahnaz: 123.22

Zara's new balance: 4434.34