gpt4 book ai didi

java - 如何使用 Stream API 在 Java 8 中编写以下代码?

转载 作者:行者123 更新时间:2023-11-30 06:04:18 25 4
gpt4 key购买 nike

有没有办法使用Stream编写以下代码?

public Map<String, Integer> process() {
List<String> words = Arrays.asList(message.toLowerCase().split("[?.\\s]+"));
Map<String, Integer> countMap = new HashMap<>();

for (String word : words) {
if (word.length() > 2) {
Integer count = countMap.getOrDefault(word, 0);
countMap.put(word, count + 1);
}
}
return countMap;
}

最佳答案

开始
Pattern.compile("[?.\\s]+").splitAsStream(message.toLowerCase())

如果您可以接受较长的结果,请坚持使用 Ravindra 的解决方案,如果您需要 int,请使用 Eran 的计数器。

所以要么:

Map<String, Long> r = Pattern.compile("[?.\\s]+").splitAsStream(message.toLowerCase())
.filter(w -> w.length() > 2)
.collect(Collectors.groupingBy(Function.identity(), Collectors.counting()));

Map<String, Integer> r = Pattern.compile("[?.\\s]+").splitAsStream(message.toLowerCase())
.filter(w -> w.length() > 2)
.collect(Collectors.toMap(Function.identity(), w -> 1, Integer::sum));

或者(在下面的评论之后)(更好)

Map<String, Integer> r = Pattern.compile("[?.\\s]+").splitAsStream(message.toLowerCase())
.filter(w -> w.length() > 2)
.collect(Collectors.groupingBy(Function.identity(), Collectors.summingInt(x -> 1)));

关于java - 如何使用 Stream API 在 Java 8 中编写以下代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49870978/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com