public static void main (String[] arg) {
HashMap<Integer, String> a = new HashMap<Integer, String>();
a.put(1, "1번 김정철");
a.put(2, "2번 이방우");
a.put(3, "3번 해와에");
a.put(4, "4번 요시키");
a.put(112, "112번-2 사나에");
a.put(112, "112번-1 저놈시키");
System.out.println(a.get(2));
Iterator<Integer> b = a.keySet().iterator();
while (b.hasNext()){
String d = a.get(b.next());
System.out.println(d);
}
}
반응형