java.util.Dictionary.put(K key,V value)方法實例
java.util.Dictionary.put(K key,V value) 方法映射到指定鍵到這個字典中指定的值。
聲明
以下是java.util.Dictionary.keys()方法的聲明
public abstract V put(K key,V value)
參數
-
key --哈希表鍵
-
value -- 值
返回值
此方法返回到該鍵被映射到這個字典中,則返回null如果該鍵冇有映射值。
異常
-
NullPointerException -- 如果該值或key為null
例子
下麵的示例演示java.util.Dictionary.put()方法的用法。
package com.yiibai; import java.util.*; public class DictionaryDemo { public static void main(String[] args) { // create a new hasthtable Dictionary d = new Hashtable(); // put some elements d.put("1", "Chocolate"); d.put("2", "Cocoa"); d.put("5", "Coffee"); // print how many times put was called System.out.println("Number of times put was called:" + d.size()); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Number of times put was called:3