fork download
  1.  
  2. import java.io.*;
  3. import java.util.*;
  4.  
  5. class Test{
  6. public static void main(String args[]){
  7. Hashtable table = new Hashtable();
  8.  
  9. // 辞書追加
  10. table.put("pen", "ペン");
  11. table.put("apple", "リンゴ");
  12. table.put("hand", "手");
  13. table.put("summer", "夏");
  14.  
  15. for(Enumeration e = table.elements() ; e.hasMoreElements() ; )
  16. System.out.println(e.nextElement());
  17. }
  18. }
  19.  
  20.  
Success #stdin #stdout 0.07s 380224KB
stdin
Standard input is empty
stdout
リンゴ
夏
手
ペン