Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,866 questions

51,788 answers

573 users

How to get a stream of random ints from the Random class using ints() and iterator.nextInt() in Java

1 Answer

0 votes
package javaapplication1;

import java.util.PrimitiveIterator;
import java.util.Random;
import java.util.stream.IntStream;

public class JavaApplication1 {

    public static void main(String[] args) {

        try {

            Random rnd = new Random();
            IntStream stream = rnd.ints();
            PrimitiveIterator.OfInt iterator = stream.iterator();

            for (int i = 0; i < 10; i++) {
                int n = iterator.nextInt();
                System.out.println(n);
            }

        } catch (Exception e) {
            System.out.print(e.toString());
        }
    }
}

/*
             
run:

921987891
1238485409
-678531257
1586706396
346596594
-451463839
502323247
724443624
-1705250509
511715303
    
 */

 



answered Nov 30, 2016 by avibootz

Related questions

2 answers 235 views
1 answer 244 views
1 answer 198 views
1 answer 187 views
1 answer 154 views
...