www.baeldung.com/java-sorting Sorting in Java | Baeldung Practical introduction to sorting in Java. www.baeldung.com 내가 직접 추상화해 만든 클래스의 객체들로 이루어진 배열을 정렬하고자 할 때 어떤 방법들이 있을까? 아래와 같은 방법들을 이용해 정렬이 가능하다. 자바에서, 정렬 메소드에 대한 이해 public class Coffee { private String name; private int price; public Coffee(String name, int price) { this.name = name; this.price = price; } public String getName() { return this..