What is the best way to go about making a static class?
I know in C# you just declare the class static.. but In Java you cannot unless it's a subclass correct?
Also, if I declare a static reference to a class. I'm trying to wrap my head around this.. Does this mean whatever object the reference is pointed to, no matter what outside class makes an instance of the class holding the static object of another class.. it will always retain the same variables for that static class instance?