We would like to know how to generate Int stream.
/*from www. j a v a 2 s .c om*/ import java.util.stream.IntStream; public class Main { public static void main(String[] argv) { IntStream.rangeClosed(1, 10).forEach(num -> System.out.println(num)); System.out.println(""); IntStream.range(1, 10).forEach(num -> System.out.println(num)); } }
The code above generates the following result.