HashMap 썸네일형 리스트형 HashMap key 정렬 TreeMap 이용한 정렬 HashMap에 데이터를 저장할 때 key 정렬이 되지 않기 때문에 key를 정렬하려면 기본 오름차순정렬하는 TreeMap를 이용해 정렬할 수 있다. Map map = new HashMap(); map.put("하춘하",99); map.put("고창석",70); map.put("임재범",89); map.put("민경옥",79); map.put("오창민",99); TreeMap tm = new TreeMap(map); Iterator iteratorKey = tm.keySet( ).iterator( ); //키값 오름차순 정렬(기본) //Iterator iteratorKey = tm.descendingKeySet().iterator(); //키값 내림차순 정렬 while(iter.. 더보기 이전 1 다음