在 Java 8 中,一個常見的任務是使用流和 lambda 將物件列表轉換為映射。這可以透過多種方式實現,具體取決於所需的行為以及 Guava 等第三方程式庫的可用性。
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; }
基於番番石榴解決方案
Guava 提供了一個方便的方法Maps.uniqueIndex,用於根據指定的鍵提取器從清單產生地圖。
Guava with Java 7
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(); } }); }
Guava 與 Java 8 Lambda
利用 Javaava 與 Java 8 Lambda
private Map<String, Choice> nameMap(List<Choice> choices) { return Maps.uniqueIndex(choices, Choice::getName); }
利用 Javaava 與 Java 8 lambda進一步簡化了程式碼:
救援的收集器
值提取器函數(檢索每個元素的值的函數) element)
Map<String, Choice> result = choices.stream().collect(Collectors.toMap(Choice::getName, Function.identity()));
以上是如何使用 Java 8 流有效地將列表轉換為地圖?的詳細內容。更多資訊請關注PHP中文網其他相關文章!