java.util.Hashtable.remove() 方法
描述
remove(Object key) 方法用于从该哈希表中删除键(及其对应的值)。
声明
以下是 java.util.Hashtable.remove() 方法的声明。
public V remove(Object key)
参数
key − 这是需要删除的键。
返回值
该方法调用返回该键在此哈希表中映射到的值,如果该键没有映射,则返回 null。
异常
NullPointerException − 如果指定的键为空,则抛出此错误。
示例
下面的例子展示了 java.util.Hashtable.remove() 的用法。
package com.tutorialspoint; import java.util.*; public class HashTableDemo { 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}