Can we access the methods of a class without instantiating it?
When we create a class like this->
class A{
public static void main(String args[]){
// code goes here....
}
}
We dont creat instance of A. But still main is the first method to be called. Then how is main method called?? Who or what calls the main method??