Java Hashtable replace()方法

java.util.Hashtable.replace(K key, V oldValue, V newValue) 用指定键的新值替换旧值。

1 语法

public boolean replace(K key, V oldValue, V newValue)

2 参数

key :要替换值的key

oldValue:旧值。

newValue:新值。

3 返回值

如果值被替换,返回true,否则返回false。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Hashtable.replace(K key, V oldValue, V newValue)方法的例子
 */
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 oldValue, V newValue) method
        map.replace("b", 300,600);

        // print new mapping
        System.out.println("New Hashtable: "
                + map.toString());
    }
}

输出结果为:

Hashtable: {b=300, a=100, d=400, c=300}
New Hashtable: {b=600, a=100, d=400, c=300}

热门文章

优秀文章