How to define and print IntStream in Java

1 Answer

0 votes
package javaapplication1;

import java.util.stream.IntStream;
import java.util.stream.Stream;

public class JavaApplication1 {
 
    public static void main(String[] args) {
        
        IntStream digits = IntStream.of(1, 2, 3, 4, 5, 6, 7, 8, 9);
        
        Stream<Integer> o =  digits.boxed();
    
        o.forEach(System.out::println);
    }
}
 
/*
run:

1
2
3
4
5
6
7
 
*/

 



answered Sep 12, 2016 by avibootz

Related questions

1 answer 150 views
1 answer 202 views
2 answers 145 views
1 answer 180 views
1 answer 176 views
176 views asked May 22, 2020 by avibootz
1 answer 163 views
163 views asked Sep 28, 2019 by avibootz
3 answers 241 views
241 views asked Sep 28, 2019 by avibootz
...