Я хочу перевести Список об’єктів на карту за допомогою потоків і лямбдав Java 8.
Ось як я написав би це на 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.
private Map<String, Choice> nameMap(List<Choice> choices) {
return Maps.uniqueIndex(choices, Choice::getName);
}
Maps.uniqueIndex(choices, Choice::getName)
.