java.util.TreeMap.put() java.util.TreeMap.pollLastEntry() java.util.TreeMap.putAll() 描述 put(K key,V value)方法用来为指定的值与此映射指定键相关联。如果映射先前包含键的映射,则替换旧值。 声明 以下是java.util.TreeMap.put()方法的声明。 public V put(K key,V value) 参数 key - 这是与指定值关联的键。 value - 这是与指定键关联的值。 返回值 方法调用返回与key关联的先前值,如果没有key的映射,则返回null。 异常 NA 实例 以下示例显示了java.util.TreeMap.put()的用法 package com.tutorialspoint; import java.util.*; public class TreeMapDemo { public static void main(String[] args) { // creating tree map TreeMap<Integer, String> treemap = new TreeMap<Integer, String>(); // populating tree map treemap.put(2, "two"); treemap.put(1, "one"); treemap.put(3, "three"); treemap.put(6, "six"); treemap.put(5, "five"); // Putting value at key 3 System.out.println("Value before modification: "+ treemap); System.out.println("Value returned: "+ treemap.put(3,"TP")); System.out.println("Value after modification: "+ treemap); } } 让我们编译并运行上面的程序,这将产生以下结果。 Value before modification: {1=one, 2=two, 3=three, 5=five, 6=six} Value returned: three Value after modification: {1=one, 2=two, 3=TP, 5=five, 6=six} java.util.TreeMap.pollLastEntry() java.util.TreeMap.putAll()