모던 자바 인 액션 - 2022-3-24
public class Apple { private Integer weight; public Integer getWeight(){ return weight; } } 이러한 weight를 가지는 Apple이라는 클래스가 있다. public class Main { private static List inventory = new ArrayList(); public static void main(String[] args) { Collections.sort(inventory, new Comparator(){ public int compare(Apple a1, Apple a2){ return a1.getWeight().compareTo(a2.getWeight()); } }); } } Apple 클래스에서 weigh..
학습 내용/책 내용 및 회고
2022. 3. 27. 16:50