[java] TreeSet과 Comparable TreeSet을 생성 할 때 Comparator를 지정해주지 않으면 저장하는 객체에 구현된 정렬방식에 따라 정렬하여 저장한다. TreeSet set1 = new TreeSet(); TreeSet set2 = new TreeSet(new Descending()); //TreeSet(Comparator c) int[] score = {30,50,10,20,40}; for(int i = 0; i < score.length; i++) { set1.add(new Integer(score[i])); set2.add(new Integer(score[i])); } class Descending implements Comparator { public int compare(Object o1, Object o2) { if(.. 더보기 이전 1 ··· 689 690 691 692 693 694 695 ··· 713 다음