A พจนานุกรม คลาสเป็นคลาสนามธรรม ที่แสดงถึง คีย์/ค่า จับคู่และทำงานเหมือน แผนที่ และเป็น คลาสดั้งเดิม ในชวา พจนานุกรม class มีสองวิธีที่สำคัญ Dictionary.keys() และ Dictionary.elements() t หมวกสามารถทำซ้ำได้โดย การแจงนับ . วิธีการที่สำคัญอื่นๆ ของคลาสพจนานุกรมคือ isEmpty() , get() , ลบ() และ size() .
ไวยากรณ์
public abstract class Dictionary<K,V> extends Object
ตัวอย่าง
import java.util.*; public class DictionaryTest { public static void main(String[] args) { Dictionary<Integer, String> dic = new Hashtable<Integer, String>(); dic.put(1, "Adithya"); dic.put(2, "Jaidev"); dic.put(3, "Raja"); Enumeration<Integer> key = dic.keys(); while(key.hasMoreElements()) { System.out.println(key.nextElement()); } Enumeration<String> element = dic.elements(); while(element.hasMoreElements()) { System.out.println(element.nextElement()); } } }
ผลลัพธ์
3 2 1 Raja Jaidev Adithya