Java中的 SortedMap put() 方法及示例
Java中SortedMap接口的put( )方法用于将指定的值与该map中的指定键相关联。
句法:
V put(K key,
V value)
参数:此方法有两个参数:
- key :这是左参数和
- value :这是映射中键的对应值。
返回:此方法返回与键关联的先前值(如果存在),否则返回 -1。
注意:SortedMap 中的 put() 方法继承自Java中的 Map 接口。
下面的程序说明了 int put() 方法的实现:
方案一:
// Java code to show the implementation of
// put 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, "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 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", "Ninde");
System.out.println(map);
}
}
输出:
{1=One, 3=Three, 5=Five, 7=Seven, 9=Ninde}
参考: https: Java/util/Map.html#put(K, %20V)