Java中的LongStream peek()方法

peek()LongStream类的方法返回带有此流元素的流,并在从结果流中消耗元素时对每个元素另外执行提供的操作。

语法如下-

LongStream peek(LongConsumer action)

在这里,LongConsumer表示一个接受单个长值参数并且不返回结果的操作。动作参数是对元素的一种非干扰性操作,当元素从流中被消耗时执行。

要在Java中使用LongStream类,请导入以下包-

import java.util.stream.LongStream;

以下是peek()在Java中实现LongStream方法的示例

示例

import java.util.stream.LongStream;
public class Demo {
   public static void main(String[] args) {
      LongStream longStream = LongStream.range(30L, 40L);
      System.out.println("Elements in the stream = ");
      long numEle = longStream.peek(System.out::println).count();
      System.out.println("The number of elements in the stream = " + numEle);
   }
}

输出结果

Elements in the stream =
30
31
32
33
34
35
36
37
38
39
The number of elements in the stream = 10