Java 8将<V>列表映射到Map <K,V>中
我想使用Java 8的流和lambda表达式将对象列表转换为Map。
这就是我将如何在Java 7和以下编写它。
private Map<String, Choice> nameMap(List<Choice> choices) {
final Map<String, Choice> hashMap = new HashMap<>();
for (final Choice choice : choices) {
hashMap.put(choice.getName(), choice);
}
return hashMap;
}
我可以使用Java 8和Guava轻松实现这一点,但我想知道如何在没有Guava的情况下执行此操作。
在番石榴:
private Map<String, Choice> nameMap(List<Choice> choices) {
return Maps.uniqueIndex(choices, new Function<Choice, String>() {
@Override
public String apply(final Choice input) {
return input.getName();
}
});
}
和Java 8 lambda的番石榴。
private Map<String, Choice> nameMap(List<Choice> choices) {
return Maps.uniqueIndex(choices, Choice::getName());
}
基于Collectors
文档,它非常简单:
Map<String, Choice> result =
choices.stream().collect(Collectors.toMap(Choice::getName,
Function.identity()));
如果您的密钥不能保证对列表中的所有元素都是唯一的,则应将其转换为Map<String, List<Choice>>
而不是Map<String, Choice>
Map<String, List<Choice>> result =
choices.stream().collect(Collectors.groupingBy(Choice::getName));
使用getName()作为键和选择本身作为映射的值:
Map<String, Choice> result =
choices.stream().collect(Collectors.toMap(Choice::getName, c -> c));
链接地址: http://www.djcxy.com/p/36371.html