java.util.Dictionary.get()方法範例


java.util.Dictionary.get(Object key) 方法返回的是字典中給出的鍵的值。

宣告

以下是java.util.Dictionary.get()方法的宣告

public abstract V get(Object key)

引數

  • key -- 此字典的一個鍵。如果鍵沒有對映到任何值,那麼可以為null。

返回值

此方法返回到該鍵所對映在這個字典中的值。

異常

  • NA

例子

下面的範例演示java.util.Dictionary.get()方法的用法。

package com.yiibai;

import java.util.*;

public class DictionaryDemo {

   public static void main(String[] args) {

      // create a new hashtable
      Dictionary dict = new Hashtable();
	  
      // add elements in the hashtable
      dict.put("1", "Chocolate");
      dict.put("2", "Cocoa");
      dict.put("6", "Coffee");
	  
      // returns the elements associated with the key
      System.out.println(dict.get("6"));
   }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Coffee