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}