我有一个类A
列表
class A {
private Integer keyA;
private Integer keyB;
private String text;
}
我想转移到由和映射的aList
嵌套Map
keyA
keyB
所以我创建了下面的代码。
Map<Integer, Map<Integer,List<A>>> aMappedByKeyAAndKeyB = aList.stream()
.collect(Collectors.collectingAndThen(Collectors.groupingBy(A::getKeyA), result -> {
Map<Integer, Map<Integer, List<A>>> nestedMap = new HashMap<Integer, Map<Integer, List<A>>>();
result.entrySet().stream().forEach(e -> {nestedMap.put(e.getKey(), e.getValue().stream().collect(Collectors.groupingBy(A::getKeyB)));});
return nestedMap;}));
但我不喜欢这段代码。
我想如果我使用flatMap
,我可以编写比这更好的代码。
但我不知道如何使用flatMap
这种行为。