Comparator / Comparable 비교 해보기
study/java 2022. 6. 1. 23:47

Comparable 인터페이스 https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html 정렬 수행 시에, 기본적으로 적용되는 정렬의 기준이 되는 메서드를 정의하는 인터페이스 사용 방법 Comparable 인터페이스를 구현한 뒤에, 내부에 있는 compareTo 메서드를 원하는 정렬 기준대로 구현하여 사용한다. class Student implements Comparable { int grade; // compareTo 메서드 오버라이드 @Override public int compareTo(Student anotherStudent) { return Integer.compare(grade, anotherStudent.grade); } } 생성..