티스토리 뷰

public class Apple {
    private Integer weight;
    public Integer getWeight(){
        return weight;
    }
}

이러한 weight를 가지는 Apple이라는 클래스가 있다.

public class Main {
    private static List<Apple> inventory = new ArrayList<>();
    public static void main(String[] args) {
        Collections.sort(inventory, new Comparator<Apple>(){
            public int compare(Apple a1, Apple a2){
                return a1.getWeight().compareTo(a2.getWeight());
            }
        });
    }
}

Apple 클래스에서 weight를 비교해주는 코드이다.

이 Main클래스를 다음과 같이 바꿀 수 있다.

public class Main {
    private static final List<Apple> inventory = new ArrayList<>();
    public static void main(String[] args) {
        inventory.sort(comparing(Apple::getWeight));
    }
}

훨씬 간단한 한 줄로 변환되었지만 같은 기능을 수행하는 코드이다.

공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
TAG
more
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
글 보관함