我正在编写一个方法,该方法采用Map< Term,List< Integer>>格式的输入Map.其中一个术语定义为
here.
方法:
>浏览地图的键并使用Term属性过滤它们.
>对于每个剩余的键,获取相应列表的大小,将其限制为5(min(List.size(),5))并将输出添加到全局变量(例如,totalSum)
>返回totalSum
这是我到目前为止所写的:
inputMap .entrySet() .stream() .filter(entry -> entry.getKey().field().equals(fieldName)) // Keep only terms with fieldName .forEach(entry -> entry.getValue() .map(size -> Math.min(entry.getValue().size(),5))) // These 2 lines do not work .sum();
我无法将列表流作为输入,为每个列表输出一个整数并返回所有输出的总和.
我显然可以使用for循环来编写它,但我正在尝试学习Java 8,并且好奇如果使用它可以解决这个问题.
解决方法
您不需要forEach方法.您可以将Map的每个条目映射到int,并将这些整数求和:
int sum = inputMap .entrySet() .stream() .filter(entry -> entry.getKey().field().equals(fieldName)) .mapToInt(entry -> Math.min(entry.getValue().size(),5)) .sum();