當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。