Java8의 새로운 기능을 사용하여 List 컬렉션 정렬 방법

6052 단어
카탈로그
먼저 객체를 작성합니다.
자바에서 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]
 
 
흰둥이 총결산, 비판과 시정을 환영합니다~
 
 
 

좋은 웹페이지 즐겨찾기