Java 8 中的 Collectors averagingInt() 方法

java 8object oriented programmingprogramming

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

语法如下 −

static <T> Collector<T,?,Double> averagingInt(ToIntFunction<? super T> mapper)

此处,参数 −

  • T − 输入元素的类型

  • ma​​pper − 提取要求和的属性的函数

  • Double −它将原始类型 double 的值包装在对象中。

  • ToIntFunction − 产生 int 值结果的函数。

要在 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.averagingInt(a -> Integer.parseInt(a)));
      System.out.println("Arithmetic Mean of the stream elements = "+res);
   }
}

输出

Arithmetic Mean of the stream elements = 99.16666666666667

相关文章