用示例映射Java中的 putAll() 方法
此方法用于将所有映射从指定映射复制到此映射。
句法:
void putAll(Map m)
参数:此方法具有唯一的参数映射 m,其中包含要复制到给定映射的键值映射。
返回:此方法返回与键关联的先前值(如果存在),否则返回 -1。
下面的程序显示了 int putAll() 方法的实现。
方案一:
// Java code to show the implementation of
// putAll 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, "Nine");
System.out.println(map);
Map mp = new HashMap<>();
mp.put(10, "Ten");
mp.put(30, "Thirty");
mp.put(50, "Fifty");
map.putAll(mp);
System.out.println(map);
}
}
输出:
{1=One, 3=Three, 5=Five, 7=Seven, 9=Nine}
{1=One, 50=Fifty, 3=Three, 5=Five, 7=Seven, 9=Nine, 10=Ten, 30=Thirty}
程序 2:下面是显示 put() 实现的代码。
// Java code to show the implementation of
// putAll 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", "Nine");
System.out.println(map);
Map mp = new HashMap<>();
mp.put("10", "Ten");
mp.put("30", "Thirty");
mp.put("50", "Fifty");
map.putAll(mp);
System.out.println(map);
}
}
输出:
{1=One, 3=Three, 5=Five, 7=Seven, 9=Nine}
{1=One, 3=Three, 5=Five, 7=Seven, 9=Nine, 50=Fifty, 30=Thirty, 10=Ten}
参考:
甲骨文文档