In Java we have static class Math. You don't need to create its objects so its static. Another one is Random class. We don't need to create its instances so why isn't it static too? My classes I often use random numbes and get mad when have to create field rand in every class to generate random numbers. So why isn't it static?
|
The Random class has state, including where it is in its sequence, as the values produced are not truly random, just a pseudo-random sequence. This can be demonstrated by initialising two instances with the same seed.
Output
If you create with the default constructor Random(), then the seed is initialized based on the current time in nanoseconds + a static counter, which means different instances are very likely to have different sequences. |
|||||||
|
|
You do need to create instances, because a random-number generator has state. Specifically, state that controls the current position in the pseudo-random sequence. If you want multiple independent generators (that don't share state), then you need separate instances. |
||||
|
|
|
It's all about seeds. As you know we don't talk about real random numbers but pseudo-random. When you know the first number you can calculate the others. This is why we use somethig what is called 'a seed'. Each object of |
|||
|
|
|
The reason is that you may require several independent random number generators. This is achieved by having several instances of |
|||
|
|
Random. Both of the premises of your question are incorrect, basically. – Jon Skeet Jan 20 at 12:42