Static Keyword in JAVA

Static keyword in Java Static is known as a non-access modifier. Static keyword can be used to declare the following. Variables Block Method Static Variables : In easy terms, the static variable is the variable which is common for all the object of that particular class. It can be called with or without object instance … Read more