मैं जावा 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)
:।