Java Hashtable replace()方法
java.util.Hashtable.replace(K key, V value) 方法仅在先前将键映射为某个值时才用于替换指定键的值。
1 语法
public V replace(K key, V value)
2 参数
key:这是必须替换其值的元素的键。
value:这是必须与提供的键映射的新值。
3 返回值
该方法返回与指定键关联的先前值。如果没有映射的键,则返回null,如果实现支持null值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.Hashtable.replace(K key, V value)方法的例子
*/
import java.util.*;
public class Demo {
public static void main(String args[]) {
// Create a Hashtable and add some values
Hashtable<String, Integer> map
= new Hashtable<>();
map.put("a", 100);
map.put("b", 300);
map.put("c", 300);
map.put("d", 400);
// print map details
System.out.println("Hashtable: "
+ map.toString());
// provide value for the key which has
// to replace it's current value,
// using replace(K key, V value) method
map.replace("b", 200);
// print new mapping
System.out.println("New Hashtable: "
+ map.toString());
}
}
输出结果为:
Hashtable: {b=300, a=100, d=400, c=300}
New Hashtable: {b=200, a=100, d=400, c=300}
热门文章
优秀文章