Consider this scenario...
Class XYZ{
public static void functionTest(){
// Your code
}
public static void main(String args[]){
XYZ x = new XYZ();
//Here we can execute the method functionTest() in 2 ways.
x.functionTest();
XYZ.functionTest();
}
}
Every class will have something called Context of a class, which means all the static methods and static variables get memory allocated in RAM without creating an object of that class and we call that memory as Context of a class.
And a reference(x) contains two parts, one is the actual address of the object(instance) and other is the address of context of the class.
When we call x.function() in above scenario, first it always searches for the context of the class, if it finds the method there it will execute it, if not found it will execute it from the instance of the class.
So, in whatever way you try to execute a static method, it will always be executed from the context of the class and not from the instance of the class.
That is the reason why static members of a class can be called in both ways.
and by calling the method from the instance, we are unnecessary creating the object which is not at all required ( unnecessary allocation of memory)