Class Variables and Methods
A static field belongs to the class itself, not to any one object.
public class Student { private static int studentCount = 0;
}
The class variable studentCount is shared by all Student objects.
Class Methods
Class methods are also declared static and belong to the class. A static method can access only class members directly.