⭐Static Members


Home SQL Manual Testing Java Selenium

Defination:-
dot imgAny Member's of the Class is Declared with the keyword Static is called Static member's of the class.
dot imgStatic is always associated with class.
dot imgStatic is one Copy.
dot imgAll the Static member's are stored in Static Pool Area.
dot imgWhenever 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:-