如何使用 java 流对子列表中的元素进行分组和计数

我想使用 java 流对子列表中的元素进行分组和计数。


例如,我有一个 AnswerWithOneCorrectOption 类型的答案,如下所示:


class AnswerWithOneCorrectOption {

     Long choiceId;

}

此答案类型只有一个正确选项,存储在“AnswerWithOneCorrectOption.id”中。我正在通过 AnswerWithOneCorrectOption 的列表进行流式传输,基于 id 进行分组并使用以下方法进行计数:


private Map<Long, Long> countChoicesAndGroup(List<AnswerWithOneCorrectOption> answers){


Map<Long, Long> map = answers.parallelStream()

             .collect(Collectors.groupingBy(AnswerWithOneCorrectOption::getChoiceId, 

 Collectors.counting())); 


 return map;

}

假设我有另一种可以有多个正确选项的答案类型。我将这些选项保存在List<Long> choiceIds.


class AnswerWithMultipleCorrectOptions {

     List<Long> choiceIds;

}

如何按choiceId 分组List<Long> choiceIds并计数?


GCT1015
浏览 123回答 1
1回答

人到中年有点甜

如果用户只选择了一个选项,它将被保存在 answer.id 中。如果他选择了多个答案,我会将其添加到列表 answer.ids 中。仅使用Answerwith可能会更好List<Long> ids。如果用户只选择一个选项,您将只有一个元素的列表。它允许您按答案分组(不要忘记equals/hashcode)两种情况:Map<Answer, Long> collect = answers.stream()&nbsp; &nbsp; &nbsp; &nbsp; .collect(groupingBy(Function.identity(), counting()));但如果你想按List<Long>它分组,可以用同样的方法:Map<List<Long>, Long> collect = answers.stream()&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .collect(groupingBy(Answer::choiceIds, counting()));更新:按之前可以使用的子列表中的元素进行分组flatMap:Map<Long, Long> map = answers.stream()&nbsp; &nbsp; &nbsp; &nbsp; .flatMap(answer -> answer.getIds().stream())&nbsp; &nbsp; &nbsp; &nbsp; .collect(groupingBy(Function.identity(), counting()));
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java