Is there a way to access a variable in a class without instantiating the class?

In reply to sk7799:

Creating an instance (object) of a class is exactly when they become available to access. Each class object you create has a corresponding set of class variables. Static class variables belong to the class type, not each object. You can access static class variables without every creating any class objects.