Java Hashtable remove()方法

java.util.Hashtable.remove() 从Hashtable中删除具有关联的指定键的指定值。

1 语法

public V remove(Object key)

2 参数

key:这是需要删除的key。

3 返回值

返回此Hashtable中已将键映射到的值;如果键没有映射,则返回null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Hashtable.remove()方法的例子
 */
import java.util.*;

public class Demo {
    public static void main(String args[]) {

        // create hash table
        Hashtable htable = new Hashtable(3);

        // populate the table
        htable.put(1, "TP");
        htable.put(2, "IS");
        htable.put(3, "THE");
        htable.put(4, "BEST");
        htable.put(5, "TUTORIAL");

        System.out.println("Initial hash table value: "+htable);

        // remove element at key 3
        htable.remove(3);

        System.out.println("Hash table value after remove: "+htable);
    }
}

输出结果为:

Initial hash table value: {5=TUTORIAL, 4=BEST, 3=THE, 2=IS, 1=TP}
Hash table value after remove: {5=TUTORIAL, 4=BEST, 2=IS, 1=TP}

热门文章

优秀文章