ネストされたリストの要素でリストをグループ化[重複]

Jan 25 2021

次のようなパラメータを持つCarオブジェクトがあります。

private String model;
private BigDecimal price;
private Color color;
private BigDecimal milleage;
private List<String> components;

車のオブジェクトのリストを作成しました。

var cars = List.of(
    Car.create("FORD", BigDecimal.valueOf(120000), Color.RED, BigDecimal.valueOf(150000),
            List.of("AIR CONDITIONING", "VOICE SERVICE")),
    Car.create("FORD", BigDecimal.valueOf(160000), Color.RED, BigDecimal.valueOf(150000),
            List.of("AIR CONDITIONING", "VOICE SERVICE")),
    Car.create("AUDI", BigDecimal.valueOf(200000), Color.BLACK, BigDecimal.valueOf(195000),
            List.of("NAVIGATION", "AUTOMATIC GEARBOX")),
    Car.create("FIAT", BigDecimal.valueOf(70000), Color.BLUE, BigDecimal.valueOf(85000),
            List.of("AIR CONDITIONING", "MANUAL GEARBOX")));

次にMap<String, List<Car>>、文字列がコンポーネントリストの要素であり、このコンポーネントを含むオブジェクトのList<Car>>リストである場所を作成しCarます。

私はいくつかの同様の問題に基づいてこのようなことを試みましたが、実際にはこの問題を解決する方法がわかりません:

static Map<String, List<Car>> carsThatGotComponent(List<Car> cars) {
    return cars.stream()
               .flatMap(car -> car.getComponents()
                       .stream()
                       .map(component -> new AbstractMap.SimpleEntry<>(car, component)))
               .collect(Collectors.groupingBy(
                        Map.Entry::getValue,
                        Collectors.mapping(Map.Entry::getKey, Map.Entry::getValue)));
}

回答

2 NikolasCharalambidis Jan 25 2021 at 19:15

Collectors#mapping2番目のパラメーターとして、Collectorマッピング関数ではなく、ダウンストリームが必要です。

public static <T,U,A,R> Collector<T,?,R> mapping(
    Function<? super T,? extends U> mapper, 
    Collector<? super U,A,R> downstream)

Collectors.toList()代わりに使用したい:

return cars.stream()
    .flatMap(car -> car.getComponents()
                       .stream()
                       .map(component -> new AbstractMap.SimpleEntry<>(car, component)))
    .collect(Collectors.groupingBy(
            AbstractMap.SimpleEntry::getValue,
            Collectors.mapping(AbstractMap.SimpleEntry::getKey, Collectors.toList())));

限り、あなたは使いようのjava-10以降、あなたが使用して1つのコレクタに全体の流れを簡素化する使用することができるCollectors#flatMappingのとのjava-9 :

return cars.stream()
    .collect(Collectors.flatMapping(
             car -> car.getComponents()
                       .stream()
                       .map(component -> new AbstractMap.SimpleEntry<>(car, component)),
             Collectors.groupingBy(AbstractMap.SimpleEntry::getValue,
                     Collectors.mapping(AbstractMap.SimpleEntry::getKey, 
                             Collectors.toList()))));