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