static keyword in java

The “static” keyword can be applied to an inner class (a class defined within another class), method or field (a member variable of a class). Static methods and variables are shared among all instances of a class. They can be invoked and accessed without creating new instances of the class. Example public class Student{ String […]

Share this article on