일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- JAVA11
- heroku
- 자바 thread 실행 순서 제어
- Kadane's Algorithm
- scanner
- SpringBoot 2
- 카데인 알고리즘
- array
- 사칙연산
- R
- Easy
- 수학
- hash table
- input
- 자바 스레드 실행 순서 제어
- 자바입력
Archives
- Today
- Total
목록Java/Useful Interfaces (1)
DeFacto-Standard IT
Comparator, Comparable Interfaces
Comparator, Comparable 인터페이스는, List인터페이스를 구현하는(예를 들면 ArrayList 등) 컬렉션 리스트에 들어있는 객체들의 정렬을 할 때 주로 쓰인다. Comparator는 기본 정렬기준 외에도 다른 정렬 기준을 정하고 1차정렬된 틀 안에서 2차 정렬을 수행할 때 사용된다.Comparable은 기본 정렬기준을 구현하는데 사용한다. Comparator와 Comparable 인터페이스의 소스는 다음과 같다.public interface Comparator { int compare(Object o1, Object o2); boolean equals(Object obj); }public interface Comparable { public int compareTo(Object o);..
Java/Useful Interfaces
2017. 10. 28. 01:04