当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Hashtable remove()用法及代码示例


java.util.Hashtable.remove()是Hashtable类的内置方法,用于从表中删除任何特定键的映射。它本质上删除表中任何特定键的值。

用法:

Hash_Table.remove(Object key)

参数:该方法采用一个参数键,该键的映射关系将从表中删除。


返回值:如果该键存在,则该方法返回先前映射到指定键的值,否则该方法返回NULL。

以下程序说明了java.util.Hashtable.remove()方法的用法:
程序1:传递现有 key 时。

// Java code to illustrate the remove() method 
import java.util.*; 
  
public class Hash_Table_Demo { 
    public static void main(String[] args) 
    { 
  
        // Creating an empty Hashtable 
        Hashtable<Integer, String> hash_table =  
        new Hashtable<Integer, String>(); 
  
        // Inserting elements into the table 
        hash_table.put(10, "Geeks"); 
        hash_table.put(15, "4"); 
        hash_table.put(20, "Geeks"); 
        hash_table.put(25, "Welcomes"); 
        hash_table.put(30, "You"); 
  
        // Displaying the Hashtable 
        System.out.println("Initial Table is:" + hash_table); 
  
        // Removing the existing key mapping 
        String returned_value = (String)hash_table.remove(20); 
  
        // Verifying the returned value 
        System.out.println("Returned value is:" + returned_value); 
  
        // Displayin the new table 
        System.out.println("New table is:" + hash_table); 
    } 
}
输出:
Initial Table is:{10=Geeks, 20=Geeks, 30=You, 15=4, 25=Welcomes}
Returned value is:Geeks
New table is:{10=Geeks, 30=You, 15=4, 25=Welcomes}

程序2:传递新 key 时。

// Java code to illustrate the remove() method 
import java.util.*; 
  
public class Hash_Table_Demo { 
    public static void main(String[] args) 
    { 
  
        // Creating an empty Hashtable 
        Hashtable<Integer, String> hash_table =  
        new Hashtable<Integer, String>(); 
  
        // Inserting mappings into the table 
        hash_table.put(10, "Geeks"); 
        hash_table.put(15, "4"); 
        hash_table.put(20, "Geeks"); 
        hash_table.put(25, "Welcomes"); 
        hash_table.put(30, "You"); 
  
        // Displaying the Hashtable 
        System.out.println("Initial table is:" + hash_table); 
  
        // Removing the new key mapping 
        String returned_value = (String)hash_table.remove(50); 
  
        // Verifying the returned value 
        System.out.println("Returned value is:" + returned_value); 
  
        // Displayin the new table 
        System.out.println("New table is:" + hash_table); 
    } 
}
输出:
Initial table is:{10=Geeks, 20=Geeks, 30=You, 15=4, 25=Welcomes}
Returned value is:null
New table is:{10=Geeks, 20=Geeks, 30=You, 15=4, 25=Welcomes}

注意:可以使用任何类型的变体以及不同数据类型的组合来执行相同的操作。



相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 Hashtable remove() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。