IntStream类中的generate()
方法返回无限顺序无序流,其中每个元素由提供的IntSupplier生成。
语法如下
static IntStream generate(IntSupplier i)
在这里,我是生成元素的IntSupplier。IntSupplier代表一个带有int值的结果的供应商。
以下是generate()
在Java中实现IntStream方法的示例。我们在limit()
这里也使用了该方法来限制流中所需元素的数量
import java.util.*; import java.util.stream.IntStream; public class Demo { public static void main(String[] args) { IntStream intStream = IntStream.generate(() -> { return (int)(Math.random() * 100); }); intStream.limit(3).forEach(System.out::println); } }
输出结果
7 26 22