+ 1
Why the main method is static?
2 Answers
+ 4
Because for Static method execution therevis no need of Object creation.
Main method is entry point of the programme.
if main method would not static every time we have to create object for it.
0
For the JVM to call without setted a object .