提出問題
Java的IntSummaryStatistics類別如何簡單使用? ? ?
解決問題
這個類別主要是和stream類別配合使用的,在java.util套件中,主要用於統計整形數組中元素的最大值,最小值,平均值,個數,元素總和等等。以下是一個簡單的例子:
[code]package com.evada.de; import java.util.IntSummaryStatistics; import java.util.stream.IntStream; /** * Created by Ay on 2016/5/24. */ public class LambdaTest { public static void main(String[] args) { int[] intArray = {12,3,34,67,100,99}; /** 第一种构造intStream **/ IntStream intStream = IntStream.of(intArray); /** 第二种构造intStream **/ //IntStream intStream2 = IntStream.of(12,3,34,67,100,99); /** 这个是重点,获得当前int数组的统计信息,包括 **/ IntSummaryStatistics statistics = intStream.summaryStatistics(); /** 计算出最大,最小,平均等等,是不是很好用,赶紧get起来 **/ System.out.println("the max:" + statistics.getMax()); System.out.println("the min:" + statistics.getMin()); System.out.println("the average:" + statistics.getAverage()); System.out.println("the sum:" + statistics.getSum()); System.out.println("the count:" + statistics.getCount()); } }
以上就是Java之IntSummaryStatistics的簡單實例的內容,更多相關內容請關注PHP中文網(www.php.cn)!