Java 8 中的 Collectors averagingLong() 方法

java 8programmingobject oriented programming

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

相关文章