ජාවා 8 හි ධාරාවන් සහ ලැම්බඩාස් භාවිතා කරමින් සිතියමකට වස්තු ලැයිස්තුවක් පරිවර්තනය කිරීමට මට අවශ්යය.
ජාවා 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;
}
ජාවා 8 සහ ගුවා භාවිතයෙන් මට මෙය පහසුවෙන් ඉටු කර ගත හැකි නමුත් ගුවා නොමැතිව මෙය කරන්නේ කෙසේදැයි දැන ගැනීමට මම කැමතියි.
ගුවා හි:
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();
}
});
}
සහ ජාවා 8 ලැම්බඩාස් සමඟ ගුවා.
private Map<String, Choice> nameMap(List<Choice> choices) {
return Maps.uniqueIndex(choices, Choice::getName);
}
Maps.uniqueIndex(choices, Choice::getName)
.