Java IntStream findFirst()
IntStream findFirst() 返回一个 OptionalInt (一个容器对象,可能包含也可能不包含一个非空值),描述该流的 第一个 元素,如果该流为空,则返回一个空的OptionalInt。
语法:
OptionalInt findFirst()
其中,OptionalInt是一个容器对象
可能包含也可能不包含一个非空值
并且该函数返回一个OptionalInt,描述了这个流的
的第一个元素,如果流是空的,则返回一个空的OptionalInt
如果该流是空的,则返回一个空的OptionalInt。
注意: findFirst()是Stream接口的一个 终端短循环 操作。该方法返回任何满足中间操作的第一个元素。
例1: 整数流的findFirst()方法。
// Java code for IntStream findFirst()
// which returns an OptionalInt describing
// first element of the stream, or an
// empty OptionalInt if the stream is empty.
import java.util.*;
import java.util.stream.IntStream;
class GFG {
// Driver code
public static void main(String[] args)
{
// Creating an IntStream
IntStream stream = IntStream.of(6, 7, 8, 9);
// Using IntStream findFirst() to return
// an OptionalInt describing first element
// of the stream
OptionalInt answer = stream.findFirst();
// if the stream is empty, an empty
// OptionalInt is returned.
if (answer.isPresent())
System.out.println(answer.getAsInt());
else
System.out.println("no value");
}
}
输出:
6
注意: 如果流没有遇到顺序,那么任何元素都可以被返回。
例2: findFirst()方法用于返回第一个能被4整除的元素。
// Java code for IntStream findFirst()
// which returns an OptionalInt describing
// first element of the stream, or an
// empty OptionalInt if the stream is empty.
import java.util.OptionalInt;
import java.util.stream.IntStream;
class GFG {
// Driver code
public static void main(String[] args)
{
// Creating an IntStream
IntStream stream = IntStream.of(4, 5, 8, 10, 12, 16)
.parallel();
// Using IntStream findFirst().
// Executing the source code multiple times
// must return the same result.
// Every time you will get the same
// Integer which is divisible by 4.
stream = stream.filter(num -> num % 4 == 0);
OptionalInt answer = stream.findFirst();
if (answer.isPresent())
System.out.println(answer.getAsInt());
}
}
输出:
4