Java 8 中的 Collectors averagingLong() 方法


Collectors 类的 averagingLong() 方法返回一个 Collector,该 Collector 会生成应用于输入元素的长值函数的算术平均值。

语法如下

static <T> Collector<T,?,Double> averagingLong(ToLongFunction<? super T> mapper)

其中,参数

  • T - 输入元素的类型
  • mapper - 提取要求和的属性的函数
  • Double - 将基本类型 double 的值包装在一个对象中。
  • ToLongFunction - 生成长值结果的函数。

要使用 Java 中的 Collectors 类,请导入以下包

import java.util.stream.Collectors;

以下是 Java 中实现 averagingLong() 方法的示例

示例

 在线演示

import java.util.stream.Collectors;
import java.util.stream.Stream;
public class Demo {
   public static void main(String[] args) {
      Stream<String> stream = Stream.of("20", "50", "75", "100", "150", "200");
      double res = stream.collect(Collectors.averagingLong(a -> Long.parseLong(a)));
      System.out.println("Arithmetic Mean of the stream elements = "+res);
   }
}

输出

Arithmetic Mean of the stream elements = 99.16666666666667

更新于: 2019 年 7 月 30 日

259 次浏览

开启你的 职业生涯

通过完成课程来获得认证

开始
广告