average()Java中IntStream類的方法傳回描述此流元素算術平均值的OptionalDouble;如果此流為空,則傳回一個空的optional。它擷取流元素的平均值。
文法如下OptionalDouble average()
在這裡,OptionalDouble是一個容器對象,可能包含也可能不包含double值。
使用一些元素建立一個IntStreamIntStream intStream = IntStream.of(15, 13, 45, 18, 89, 70, 76, 56);
現在,擷取流中元素的平均值OptionalDouble res = intStream.average();
以下是average()在Java中實作IntStream方法的示例。isPresent()如果存在該值,則OptionalDouble類的方法傳回true
示例import java.util.*;
import java.util.stream.IntStream;
public class Demo {
public static void main(String[] args) {
IntStream intStream = IntStream.of(15, 13, 45, 18, 89, 70, 76, 56);
OptionalDouble res = intStream.average();
System.out.println("Average of the elements of the stream...");
if (res.isPresent()) {
System.out.println(res.getAsDouble());
} else {
System.out.println("Nothing!");
}
}
}
輸出結果Average of the elements of the stream...
47.75