Java TreeMap put()方法
java.util.TreeMap.put() 在Map中插入具有指定键的指定值。
1 语法
public V put(K key,V value)
2 参数
key:这是与指定值关联的键。
value:这是与指定键关联的值。
3 返回值
返回与key关联的先前值;如果没有key映射,则返回null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.TreeMap.put()方法的例子
*/
import java.util.*;
public class Demo {
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}
热门文章
优秀文章