Java / Class Variables (Static Variables)
What are static variables?
Static variables are class level variable where all instances of the class refer same variable. When an instance update its value, all the other objects will see the new value.
More Related questions...