Java中的DoubleStream findFirst()方法
该findFirst()
方法返回一个OptionalDouble,描述此流的第一个元素。如果流为空,则返回一个空的OptionalDouble。
语法如下
OptionalDouble findFirst()
在这里,OptionalDouble是一个容器对象,可能包含也可能不包含double值。
要在Java中使用DoubleStream类,请导入以下包
import java.util.stream.DoubleStream;
首先,使用一些元素创建一个DoubleStream
DoubleStream doubleStream = DoubleStream.of(15.6, 30.2, 50.5, 78.9, 80.4, 95.8);
现在,使用findFirst()
方法获取此流的第一个元素
OptionalDouble res = doubleStream.findFirst();
以下是findFirst()
在Java中实现DoubleStream方法的示例
示例
import java.util.*; import java.util.stream.DoubleStream; public class Demo { public static void main(String[] args) { DoubleStream doubleStream = DoubleStream.of(15.6, 30.2, 50.5, 78.9, 80.4, 95.8); OptionalDouble res = doubleStream.findFirst(); System.out.println("The first element of the stream = "); if (res.isPresent()) System.out.println(res.getAsDouble()); else System.out.println("Nothing!"); } }
输出结果
The first element of the stream = 15.6
示例
import java.util.*; import java.util.stream.DoubleStream; public class Demo { public static void main(String[] args) { DoubleStream doubleStream = DoubleStream.empty(); OptionalDouble res = doubleStream.findFirst(); if (res.isPresent()) System.out.println(res.getAsDouble()); else System.out.println("Nothing! Stream is empty!"); } }
这是输出,显示else条件,因为流为空
输出结果
Nothing! Stream is empty!