Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 프론트엔드
- 심장질환
- 수수료
- 변환
- 교보
- 인출수수료
- jQuery
- 보험
- javascript
- 특약
- 파이썬
- 자바스크립트
- 급성심근경색증
- Java
- 추가납입
- 교보생명
- Vue.js
- PythonProgramming
- 보험료
- 리스트
- 코딩
- 가입
- 납입
- python
- 뇌출혈
- 사망
- 프로그래밍
- 웹개발
- 중도인출
- 문자열
Archives
- Today
- Total
SeouliteLab
[Java/자바] Comparator 인터페이스 - 객체 비교자 만들기 본문
Java에서는 Comparator 인터페이스를 사용하여 객체들을 정렬하는 데 사용되는 비교자(Comparator)를 정의할 수 있습니다. 이를 통해 기존의 정렬 기준 외에도 다양한 방법으로 객체를 비교할 수 있습니다.
1. Comparator 인터페이스 소개
Comparator 인터페이스는 객체들의 정렬 기준을 정의하기 위해 사용됩니다. Comparable과 달리, 객체의 클래스를 수정할 필요 없이 정렬 기준을 별도로 제공할 수 있습니다. compare() 메서드를 구현하여 두 객체를 비교하고 정렬 순서를 결정합니다.
2. Comparator 인터페이스 예제
예제 1: 숫자 비교
import java.util.Comparator;
public class Main {
public static void main(String[] args) {
Comparator<Integer> comparator = new Comparator<Integer>() {
public int compare(Integer num1, Integer num2) {
return num1 - num2;
}
};
int result = comparator.compare(5, 10);
System.out.println(result); // 출력 결과: -5
}
}
위 예제에서는 Comparator 인터페이스를 구현하여 숫자를 비교하는 비교자를 정의하고 있습니다. compare() 메서드를 통해 값을 비교하고 정렬 순서를 결정합니다.
예제 2: 문자열 길이 비교
import java.util.Comparator;
public class Main {
public static void main(String[] args) {
Comparator<String> comparator = new Comparator<String>() {
public int compare(String str1, String str2) {
return str1.length() - str2.length();
}
};
int result = comparator.compare("apple", "banana");
System.out.println(result); // 출력 결과: -1
}
}
위 예제에서는 Comparator 인터페이스를 구현하여 문자열의 길이를 기준으로 비교하는 비교자를 정의하고 있습니다.
예제 3: 사용자 정의 객체 비교
import java.util.Comparator;
class Person {
private String name;
private int age;
public Person(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public int getAge() {
return age;
}
}
public class Main {
public static void main(String[] args) {
Comparator<Person> comparator = new Comparator<Person>() {
public int compare(Person person1, Person person2) {
return person1.getAge() - person2.getAge();
}
};
Person person1 = new Person("Alice", 30);
Person person2 = new Person("Bob", 25);
int result = comparator.compare(person1, person2);
System.out.println(result); // 출력 결과: 5
}
}
위 예제에서는 Comparator 인터페이스를 구현하여 사용자 정의 객체를 비교하는 비교자를 정의하고 있습니다.
'프로그래밍' 카테고리의 다른 글
[Java/자바] 메소드 시그니처(Method Signature)란? (0) | 2024.03.19 |
---|---|
[Python/파이썬] FastAPI: 빠르고 간편한 웹 API 개발 프레임워크 (0) | 2024.03.19 |
[Java/자바] Comparable 인터페이스 - 객체 비교의 기준을 정의하기 (0) | 2024.03.19 |
[Java/자바] Objects.equals() 메서드로 객체 비교하기 (0) | 2024.03.19 |
[Java/자바] List에서 특정 문자열이 들어있는지 확인하는 방법 (0) | 2024.03.19 |