I\'m trying out Java 7\'s ThreadLocalRandom and see that it is generating exactly the same random numbers across multiple threads.
Here is my code, in which I creat
Isn't this because the threads are being created at roughly the same time and thus getting seeded the same value from the timer? I was under the impression that was how that worked, though I may be mistaken.