HashMap 전체 참조(foreach) 방법 (Java)
HashMap 에 포함된 Key, Value 값을 모두 확인하는 방법 # 데이터 생성 HashMap map = new HashMap(); map.put("key1", "value1"); map.put("key2", "value2"); map.put("key3", "value3"); # 방법 1 Iterator keys = map.keySet().iterator(); while( keys.hasNext() ){ String strKey = keys.next(); String strValue = map.get(strKey); System.out.println( strKey +":"+ strValue ); } # 방법 2 for( Map.Entry entry : map.entrySet() ){ String s..
2020.07.21