Gruppieren Sie die Liste nach Elementen der verschachtelten Liste [Duplikat]

Jan 25 2021

Ich habe ein Autoobjekt mit Parametern wie:

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

Ich habe eine Liste von Autoobjekten erstellt:

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")));

Jetzt möchte ich erstellen, Map<String, List<Car>>wo die Zeichenfolge Element der Komponentenliste und List<Car>>Liste der CarObjekte ist, die diese Komponente enthalten.

Ich habe so etwas aufgrund ähnlicher Probleme versucht, weiß aber wirklich nicht, wie ich dieses Problem lösen soll:

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)));
}

Antworten

2 NikolasCharalambidis Jan 25 2021 at 19:15

Collectors#mappingerfordert als zweiten Parameter eine Downstream-Funktion Collector, keine Mapping-Funktion.

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

Sie möchten Collectors.toList()stattdessen Folgendes verwenden :

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())));

Solange Sie verwenden Java-10 oder höher können Sie den gesamten Strom in einen Sammler mit verwenden vereinfachen , Collectors#flatMappingwie von 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()))));