Hashtable的java.util.Hashtable.put()方法用於將映射插入表中。這意味著我們可以將特定的鍵及其映射的值插入到特定的表中。如果傳遞了現有鍵,則以前的值將被新值替換。如果傳遞了新的配對,則該配對將整體插入。
用法:
Hash_Table.put(key, value)
參數:該方法有兩個參數,都屬於Hashtable的Object類型。
- key:這是指需要插入到表中進行映射的關鍵元素。
- value:這是指以上鍵將映射到的值。
返回值:如果傳遞了現有鍵,則返回先前的值。如果傳遞了新對,則返回NULL。
以下程序用於說明java.util.Hashtable.put()方法的用法:
示例1:傳遞現有 key 時。
// Java code to illustrate the put() 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 values 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);
// Inserting existing key along with new value
String returned_value = (String)hash_table.put(20, "All");
// Verifying the returned value
System.out.println("Returned value is: " + returned_value);
// Displaying 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, 20=All, 30=You, 15=4, 25=Welcomes}
示例2:傳遞新 key 時。
// Java code to illustrate the put() 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 values 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);
// Inserting existing key along with new value
String returned_value = (String)hash_table.put(50, "All");
// Verifying the returned value
System.out.println("Returned value is: " + returned_value);
// Displaying 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, 50=All, 15=4, 25=Welcomes}
注意:可以使用任何類型的變體以及不同數據類型的組合來執行相同的操作。
相關用法
- Java Hashtable contains()用法及代碼示例
- Java Hashtable get()用法及代碼示例
- Java Hashtable elements()用法及代碼示例
- Java Hashtable containsKey()用法及代碼示例
- Java Hashtable toString()用法及代碼示例
- Java Hashtable keys()用法及代碼示例
- Java Hashtable isEmpty()用法及代碼示例
- Java Hashtable size()用法及代碼示例
- Java Hashtable clone()用法及代碼示例
- Java Hashtable clear()用法及代碼示例
- Java Hashtable containsValue()用法及代碼示例
- Java Hashtable remove()用法及代碼示例
- Java HashTable putIfAbsent()用法及代碼示例
- Java HashTable compute()用法及代碼示例
- Java HashTable forEach()用法及代碼示例
注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 Hashtable put() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。