IntStream generate(IntSupplier s) example
Description
IntStream generate(IntSupplier s)
returns an infinite sequential unordered stream where each element is generated by the provided IntSupplier.
Syntax
generate
has the following syntax.
static IntStream generate(IntSupplier s)
Example
The following example shows how to use generate
.
import java.util.stream.IntStream;
//from w ww .j a va 2 s .c o m
public class Main {
public static void main(String[] args) {
IntStream i = IntStream.generate(()->{return (int)(Math.random()*100);});
i.limit(10).forEach(System.out::println);
}
}
The code above generates the following result.