Creates a new random number generator using a single long seed:
public Random(long seed) { setSeed(seed); }
Used by method next to hold the state of the pseudorandom number
generator.
Reads from the stream in a representation of a Unicode character string
encoded in Java modified UTF-8 format; this string of characters is then
returned as a String.
When an object implementing interface Runnable is used to create a thread,
starting the thread causes the object's run method to be called in that
separately executing thread.
If this thread was constructed using a separate Runnable run object,
then that Runnable object's run method is called; otherwise, this method
does nothing and returns.
Every Java application has a single instance of class Runtime that allows
the application to interface with the environment in which the application
is running.