当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java 8 Collectors averagingInt()用法及代码示例


Collector的averagingInt(ToIntFunction <?super T>映射器)方法用于查找参数中传递的整数的平均值。此方法返回一个Collector,该Collector产生应用于输入元素的integer-valued函数的算术平均值。如果没有传递任何元素作为输入元素,则此方法返回0。

该方法用于计算算术平均值的公式为:

  {\displaystyle A={\frac {1}{n}}\sum _{i=1}^{n}a_{i}={\frac {a_{1}+a_{2}+\cdots +a_{n}}{n}}}

用法:

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

其中,

  • 接口Collector<T,A,R>:一种可变的归约运算,它将输入元素累积到一个可变结果容器中,在处理完所有输入元素之后,可以有选择地将累积的结果转换为最终表示形式。还原操作可以顺序或并行执行。
    • T:归约运算的输入元素的类型。
    • A:归约运算的可变累积类型。
    • R:归约运算的结果类型。
  • Double: Double类将原始类型double的值包装在对象中。类型为Double的对象包含一个类型为double的单个字段。
  • ToIntFunction:表示产生整数值结果的函数。

参数:此方法采用类型为ToIntFunction的强制性参数映射器。它是一个从流中提取int类型值的函数。

下面是说明averagingInt()方法的示例:

程序1:

// Java code to show the implementation of 
// Collectors averagingInt(ToIntFunction mapper) function 
  
import java.util.stream.Collectors; 
import java.util.stream.Stream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
  
        // creating a string stream with numbers 
        Stream<String> s = Stream.of("3", "4", "5"); 
  
        // using Collectors averagingInt(ToIntFunction mapper) 
        // method to find arithmetic mean of inputs given 
        double ans = s 
                         .collect(Collectors 
                                      .averagingInt( 
                                          num -> Integer.parseInt(num))); 
  
        // displaying the result 
        System.out.println(ans); 
    } 
}
输出:
4.0

程序2:当没有输入元素作为参数传递给averagingInt()方法时。

// Java code to show the implementation of 
// Collectors averagingInt(ToIntFunction mapper) function 
  
import java.util.stream.Collectors; 
import java.util.stream.Stream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // creating a empty string stream 
        Stream<String> s = Stream.of(); 
  
        // using Collectors averagingInt(ToIntFunction mapper) 
        // method to find arithmetic mean of inputs given 
        double ans = s 
                         .collect(Collectors 
                                      .averagingInt( 
                                          num -> Integer.parseInt(num))); 
  
        // displaying the result 
        System.out.println(ans); 
    } 
}
输出:
0.0

程序3:

// Java code to show the implementation of 
// Collectors averagingInt(ToIntFunction mapper) function 
  
import java.util.stream.Collectors; 
import java.util.stream.Stream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // creating a string stream 
        Stream<String> s = Stream.of("7", "8", "9", "10"); 
  
        // using Collectors averagingInt(ToIntFunction mapper) 
        // method to find arithmetic mean of inputs given 
        double ans = s 
                         .collect(Collectors 
                                      .averagingInt( 
                                          num -> Integer.parseInt(num))); 
  
        // displaying the result 
        System.out.println(ans); 
    } 
}
输出:
8.5


相关用法


注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 Java 8 | Collectors averagingInt() with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。