Well I was wondering. the book has a lot of examples using constructors like
public ClassIWant(Random random, int something...)
{
....
}
In which I need an instance to a Random Object. If I need a Random object to generate data. Wouldn't it be easier just to get it instantiated directly in the Creator without having to get an instance of this Random guy?
I mean, it's random isn't? I think it adds some unwanted complexity to the code doesn't?











