java.util.IdentityHashMap.put()


描述

put(K key, V value)方法用来为指定的值,在此标识哈希映射指定键相关联。如果映射先前包含此键的映射,则替换旧值。

声明

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

public V put(K key, V value)

参数

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

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

返回值

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

异常

NA

实例

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

package com.tutorialspoint;

import java.util.*;

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

      // create identity hash map
      IdentityHashMap ihmap = new IdentityHashMap();

      // populate the map
      ihmap.put(1, "java");
      ihmap.put(2, "util");
      ihmap.put(3, "package");

      System.out.println("Initial map: " + ihmap);

      // put value at key 2
      ihmap.put(2, "awt");

      System.out.println("Map after modification: " + ihmap);
   }    
}

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

Initial map: {2=util, 3=package, 1=java}
Map after modification: {2=awt, 3=package, 1=java}