java.util.HashMap.put()


描述

该放(K key, V value)方法用来为指定的值与此映射指定键相关联。

声明

以下是java.util.HashMap.put()方法的声明。

public V put(K key, V value)

参数

key - 这是与指定值关联的键。

value - 这是与指定键关联的值。

返回值

方法调用返回与key关联的先前值,如果没有key的映射,则返回null。

异常

NA

实例

以下示例显示了java.util.HashMap.put()的用法

package com.tutorialspoint;

import java.util.*;

public class HashMapDemo {
   public static void main(String args[]) {

      // create hash map
      HashMap newmap = new HashMap();

      // populate hash map
      newmap.put(1, "tutorials");
      newmap.put(2, "point");
      newmap.put(3, "is best");

      System.out.println("Map value before change: "+ newmap);

      // put new values at key 3
      String prevvalue = (String)newmap.put(3,"is great");

      // check returned previous value
      System.out.println("Returned previous value: "+ prevvalue);

      System.out.println("Map value after change: "+ newmap);
   }    
}

让我们编译并运行上面的程序,这将产生以下结果。

Map value before change: {1=tutorials, 2=point, 3=is best}
Returned previous value: is best
Map value after change: {1=tutorials, 2=point, 3=is great}