Java: Static Variables and Methods

My first Java related blog post. Static Variables Static variables can be accessed from all instances of an object and without an instance of the object existing. When the static keyword is used on a variable, its value is then the same for all instances of that object. This is a way of creating globalContinue reading “Java: Static Variables and Methods”