Java中的 SortedMap putAll() 方法及示例
Java中SortedMap接口的putAll()方法用于将指定SortedMap中的所有映射复制到这个SortedMap中。
句法:
void putAll(Map m)
参数:此方法具有唯一的参数映射 m ,其中包含要复制到给定 SortedMap 的键值映射。
返回:此方法返回与键关联的先前值(如果存在),否则返回 -1。
注意:SortedMap 中的 putAll() 方法继承自Java中的 Map 接口。
下面的程序说明了 int putAll() 方法的实现:
方案一:
Java
// Java code to show the implementation of
// putAll method in SortedMap interface
import java.util.*;
public class GfG {
// Driver code
public static void main(String[] args)
{
// Initializing a SortedMap
SortedMap map
= new TreeMap<>();
map.put(1, "One");
map.put(3, "Three");
map.put(5, "Five");
map.put(7, "Seven");
map.put(9, "Nine");
System.out.println(map);
SortedMap mp
= new TreeMap<>();
mp.put(10, "Ten");
mp.put(30, "Thirty");
mp.put(50, "Fifty");
map.putAll(mp);
System.out.println(map);
}
}
Java
// Java code to show the implementation of
// putAll method in SortedMap interface
import java.util.*;
public class GfG {
// Driver code
public static void main(String[] args)
{
// Initializing a SortedMap
SortedMap map
= new TreeMap<>();
map.put("1", "One");
map.put("3", "Three");
map.put("5", "Five");
map.put("7", "Seven");
map.put("9", "Nine");
System.out.println(map);
SortedMap mp
= new TreeMap<>();
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, 10=Ten, 30=Thirty, 50=Fifty}
程序 2:下面是显示 putAll() 实现的代码。
Java
// Java code to show the implementation of
// putAll method in SortedMap interface
import java.util.*;
public class GfG {
// Driver code
public static void main(String[] args)
{
// Initializing a SortedMap
SortedMap map
= new TreeMap<>();
map.put("1", "One");
map.put("3", "Three");
map.put("5", "Five");
map.put("7", "Seven");
map.put("9", "Nine");
System.out.println(map);
SortedMap mp
= new TreeMap<>();
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, 10=Ten, 3=Three, 30=Thirty, 5=Five, 50=Fifty, 7=Seven, 9=Nine}
参考: https: Java/util/Map.html#put(K, %20V)