Defination:-
Any Member's of the Class is Declared with the keyword Static is called Static member's of the class.
Static is always associated with class.
Static is one Copy.
All the Static member's are stored in Static Pool Area.
Whenever we want to access static member's from one class to another class we should use
1.class_name.variable_name
2.class_name.method_name();
Exa:-