map 썸네일형 리스트형 [Java] Map의 값 비교 후 출력 sample 더보기 [Java] Map.Entry for(ClassA key : myMap.keySet()) { System.out.println(key); System.out.println(myMap.get(key);} 보다는.. for(Map.Entry entrie : myMap.entrySet()) { System.out.println(entrie.getKey()); System.out.println(entrie.getValue()); } 더보기 [JSTL] forEach Map ${type.key}, ${type.value} 더보기 [Ruby] Array.select, collect, map, inject collect와 map은 같은 역할.. 내부로직은 다르겠으나 결과는 같음 더보기 이전 1 다음