在Java中将元素添加到HashMap

要将元素添加到HashMap,请使用put()方法。

首先,创建一个HashMap-

HashMap hm = new HashMap();

现在,让我们向HashMap添加一些元素-

hm.put("Maths", new Integer(98));

hm.put("Science", new Integer(90));

hm.put("English", new Integer(97));

以下是向HashMap添加元素的示例-

示例

import java.util.*;

public class Demo {

   public static void main(String args[]) {

      //创建一个哈希映射

      HashMap hm = new HashMap();

      //将元素放入映射

      hm.put("Maths", new Integer(98));

      hm.put("Science", new Integer(90));

      hm.put("English", new Integer(97));

      hm.put("Physics", new Integer(91));

      hm.put("Chemistry", new Integer(93));

      //获取一组条目

      Set set = hm.entrySet();

      //获取一个迭代器

      Iterator i = set.iterator();

      //显示元素

      while(i.hasNext()) {

         Map.Entry me = (Map.Entry)i.next();

         System.out.print(me.getKey() + ": ");

         System.out.println(me.getValue());

      }

      System.out.println();

   }

}

输出结果

Maths: 98

English: 97

Chemistry: 93

Science: 90

Physics: 91

以上是 在Java中将元素添加到HashMap 的全部内容, 来源链接: utcz.com/z/316388.html

回到顶部