How can I transform a collection into a Guava Multimap grouped by the elements of a nested collection property?(如何将集合转换为按嵌套集合属性的元素分组的 Guava Multimap?)
问题描述
我有一个 List<Foo>
并且想要一个 Guava Multimap<String, Foo>
我们将 Foo
的每个标签分组集合<字符串>getTags()
函数.
I have a List<Foo>
and want a Guava Multimap<String, Foo>
where we've grouped the Foo
s by each tag of their Collection<String> getTags()
function.
我使用的是 Java 8,因此 lambda 和方法引用很好/值得鼓励.
I am using Java 8, so lambdas and method references are fine/encouraged.
例如,如果我有:
foo1, tags=a,b,c
foo2, tags=c,d
foo3, tags=a,c,e
我会得到一个 Multimap<String, Foo>
:
a -> foo1, foo3
b -> foo1
c -> foo1, foo2, foo3
d -> foo2
e -> foo3
推荐答案
您可以为此使用自定义收集器:
You can use custom collector for this:
Multimap<String, Foo> map = list.stream().collect(
ImmutableMultimap::builder,
(builder, value) -> value.getTags().forEach(tag -> builder.put(tag, value)),
(builder1, builder2) -> builder1.putAll(builder2.build())
).build();
这不会导致额外的副作用(请参阅 here on this),是并发且更惯用的.
This does not cause extra side effects (see here on this), is concurrent and more idiomatic.
您还可以将这些临时 lambda 提取到成熟的收集器中,如下所示:
You can also extract these ad-hoc lambdas into a full-fledged collector, something like this:
public static <T, K> Collector<T, ?, Multimap<K, T>> toMultimapByKey(Function<? super T, ? extends Iterable<? extends K>> keysMapper) {
return new MultimapCollector<>(keysMapper);
}
private static class MultimapCollector<T, K> implements Collector<T, ImmutableMultimap.Builder<K, T>, Multimap<K, T>> {
private final Function<? super T, ? extends Iterable<? extends K>> keysMapper;
private MultimapCollector(Function<? super T, ? extends Iterable<? extends K>> keysMapper) {
this.keysMapper = keysMapper;
}
@Override
public Supplier<ImmutableMultimap.Builder<K, T>> supplier() {
return ImmutableMultimap::builder;
}
@Override
public BiConsumer<ImmutableMultimap.Builder<K, T>, T> accumulator() {
return (builder, value) -> keysMapper.apply(value).forEach(k -> builder.put(k, value));
}
@Override
public BinaryOperator<ImmutableMultimap.Builder<K, T>> combiner() {
return (b1, b2) -> b1.putAll(b2.build());
}
@Override
public Function<ImmutableMultimap.Builder<K, T>, Multimap<K, T>> finisher() {
return ImmutableMultimap.Builder<K, T>::build;
}
@Override
public Set<Characteristics> characteristics() {
return Collections.emptySet();
}
}
那么集合将如下所示:
Multimap<String, Foo> map = list.stream().collect(toMultimapByKey(Foo::getTags));
如果顺序对您不重要,您也可以从 characteristics()
方法返回 EnumSet.of(Characteristics.UNORDERED)
.这可以使内部收集机制更有效地发挥作用,尤其是在并行归约的情况下.
You can also return EnumSet.of(Characteristics.UNORDERED)
from characteristics()
method if the order is not important for you. This can make internal collection machinery act more efficiently, especially in case of parallel reduction.
这篇关于如何将集合转换为按嵌套集合属性的元素分组的 Guava Multimap?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将集合转换为按嵌套集合属性的元素分组的 Guava Multimap?
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 转换 ldap 日期 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- 获取数字的最后一位 2022-01-01