📜  用示例映射Java中的 put() 方法

📅  最后修改于: 2022-05-13 01:55:29.143000             🧑  作者: Mango

用示例映射Java中的 put() 方法

此方法用于将指定值与此映射中的指定键相关联。

句法:

V put(K key,
    V value)

参数:此方法有两个参数,key 和 value,其中 key 是左侧参数,value 是映射中 key 的对应值。

返回:此方法返回与键关联的先前值(如果存在),否则返回 -1。

下面的程序显示了 int put() 方法的实现。

方案一:

// Java code to show the implementation of
// put method in Map interface
import java.util.*;
public class GfG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Initializing a Map of type HashMap
        Map map = new HashMap<>();
        map.put(1, "One");
        map.put(3, "Three");
        map.put(5, "Five");
        map.put(7, "Seven");
        map.put(9, "Ninde");
        System.out.println(map);
    }
}
输出:
{1=One, 3=Three, 5=Five, 7=Seven, 9=Ninde}

程序 2:下面是显示 put() 实现的代码。

// Java code to show the implementation of
// put method in Map interface
import java.util.*;
public class GfG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Initializing a Map of type HashMap
        Map map = new HashMap<>();
        map.put("1", "One");
        map.put("3", "Three");
        map.put("5", "Five");
        map.put("7", "Seven");
        map.put("9", "Ninde");
        System.out.println(map);
    }
}
输出:
{1=One, 3=Three, 5=Five, 7=Seven, 9=Ninde}

参考:
甲骨文文档