Java8의 새로운 기능을 사용하여 List 컬렉션 정렬 방법
먼저 객체를 작성합니다.
자바에서 1.8 이전에는 등록 정보(weight)에 따라 List 객체 컬렉션을 정렬했습니다.
자바에서 1.8 이후에 List 객체 컬렉션은 속성에 따라 다음과 같이 정렬됩니다(기본 오름차순).
자바에서 1.8 다음에 우리는 하나의 List 객체 집합에 대해 속성에 따라 다음과 같이 정렬한다.(내림차순 사용자 정의)
Comparator 정렬 원리:
만약 하나의 속성(weight)이 동시에 있다면 다른 속성(Color)에 따라 정렬하려면 어떻게 해야 합니까?
먼저 객체를 작성합니다.
Apple 클래스
class Apple {
private String color;
private Double weight;
public Apple(String color, Double weight) {
this.color = color;
this.weight = weight;
}
public Apple() {}
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
public Double getWeight() {
return weight;
}
public void setWeight(Double weight) {
this.weight = weight;
}
@Override
public String toString() {
return "Apple [color=" + color + ", weight=" + weight + "]";
}
}
자바에서 1.8 이전에는 등록 정보(weight)에 따라 List 객체 컬렉션을 정렬했습니다.
(기본 오름차순)
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
public class Test {
public static void main(String[] args) {
List apples = Arrays.asList(new Apple("green", 1.5), new Apple("red", 1.3), new Apple("yellow", 1.7));
Collections.sort(apples, new Comparator() {
@Override
public int compare(Apple a1, Apple a2) {
return (a1.getWeight() > a2.getWeight()) ? 1 :
(a1.getWeight() < a2.getWeight() ? -1 : 0);
}
});
for (Apple a : apples) {
System.out.println(a);
}
}
}
실행 결과
Apple [color=green, weight=1.3] Apple [color=red, weight=1.5] Apple [color=yellow, weight=1.7]
자바에서 1.8 이후에 List 객체 컬렉션은 속성에 따라 다음과 같이 정렬됩니다(기본 오름차순).
import java.util.Arrays;
import java.util.Comparator;
import java.util.List;
public class Test {
public static void main(String[] args) {
List apples = Arrays.asList(new Apple("green", 1.5), new Apple("red", 1.3), new Apple("yellow", 1.7));
apples.sort(Comparator.comparing(Apple :: getWeight));
apples.forEach(System.out :: println);
}
}
사용된 새로운 기능
메소드 참조, Lambda 표현식,
List는 새로운sort방법과forEach방법,Comparator새로운comparing정적방법,새로운Function함수식인터페이스류를 집합한다.
실행 결과
Apple [color=green, weight=1.3] Apple [color=red, weight=1.5] Apple [color=yellow, weight=1.7]
자바에서 1.8 다음에 우리는 하나의 List 객체 집합에 대해 속성에 따라 다음과 같이 정렬한다.(내림차순 사용자 정의)
import java.util.Arrays;
import java.util.Comparator;
import java.util.List;
public class Test {
public static void main(String[] args) {
List apples = Arrays.asList(new Apple("green", 1.3), new Apple("red", 1.5), new Apple("yellow", 1.7));
apples.sort(Comparator.comparing(Apple :: getWeight).reversed());
apples.forEach(System.out :: println);
}
}
실행 결과
Apple [color=yellow, weight=1.7] Apple [color=green, weight=1.5] Apple [color=red, weight=1.3]
Comparator 정렬 원리:
JDK의 기본 정렬 논리가
> return 1
= return 0
< return -1
역순 정렬이 필요할 때 수동으로 정렬 논리를
> return -1
= return 0
< return 1
코드 구현: (오름차순)
if (a1.getWeight() > a2.getWeight())
return 1;
if (a1.getWeight() < a2.getWeight())
return -1;
return 0;
3원 조작부호를 사용합니까?:단순화:
(a1.getWeight() > a2.getWeight()) ? 1 : (a1.getWeight() < a2.getWeight() ? -1 : 0);
만약 하나의 속성 (weight) 이 동시에 있다면, 다른 속성 (color) 에 따라 정렬하려면 어떻게 해야 합니까?
여기서 우리는 Comparator의 then Comparing () 방법으로 실현해야 한다. 이렇게 하면 비교기 체인이 형성된다.코드는 다음과 같습니다.
import java.util.Arrays;
import java.util.Comparator;
import java.util.List;
public class Test {
public static void main(String[] args) {
List apples = Arrays.asList(new Apple("yellow", 1.5), new Apple("red", 1.3), new Apple("green", 1.5));
apples.sort(Comparator.comparing(Apple :: getWeight).reversed().
thenComparing(Apple :: getColor)); // ,
apples.forEach(System.out :: println);
}
}
질량 역순으로만 정렬, 실행 결과
Apple [color=yellow, weight=1.5] Apple [color=green, weight=1.5] Apple [color=red, weight=1.3]
질량 역순으로 정렬, 질량 동시, 색깔로 정렬, 운행 결과
Apple [color=green, weight=1.5] Apple [color=yellow, weight=1.5] Apple [color=red, weight=1.3]
흰둥이 총결산, 비판과 시정을 환영합니다~
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.