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 166 views
1 answer 212 views
2 answers 158 views
1 answer 191 views
1 answer 183 views
183 views asked May 22, 2020 by avibootz
1 answer 171 views
171 views asked Sep 28, 2019 by avibootz
3 answers 259 views
259 views asked Sep 28, 2019 by avibootz
...