Why main() in java is declared as public static void main?

In java main() method is special method, it is entry point for launching core java application not like servlet and other containers. In Core java application we run the application then JVM search for public static void main(String args[]) method in that class and if it doesn’t find that method it throws error NoSuchMethodError:main and terminates. It is similar process required to other language like C and C++ but the method definition slightly different from java it doesn’t return any value like in C it returns int.

There are following two valid signature of main method in java as below.

  • public static void main(String args[])
  • public static void main(String… args) (As of Java 1.5)

Popular Spring Tutorials

  1. Spring Tutorial
  2. Spring MVC Web Tutorial
  3. Spring Boot Tutorial
  4. Spring JDBC Tutorial
  5. Spring AOP Tutorial
  6. Spring Security Tutorial

Why Java force the developer to define public static void main method?

Why public? In Java public is access modifier and it using when we want to method from any where like any native library JNDI, etc. So that is reason main method is public, it can be accessible everywhere and to every object which may desire to use it for launching the application.

Why static? In Java static is a keyword and it tells the compiler that particular entity belongs to a class and should be loaded once the JVM starts. So static things we could invoke without creating instance of that class. Lets suppose we do not have main method as static. Now, to call any method you need an instance of it. Now how to create instance of class which have main method and which one should be used and from where the parameters for overloaded constructors will come.

Why void? In Java void use before the method definition its mean this method is not returning any to the caller of method. But main method is invoked by JVM so there is no use of returning any value to JVM. The only thing application would like to communicate to invoking process normal or abnormal termination. This is already possible using System.exit(int). A non-zero value means abnormal termination otherwise everything was fine.

Why String[] args? it means we create a string type array. It is useful when we pass the value through command line while execute the program.

Why name is main? it is the special user define function. Although it is user define but We can’t change the name.

Conclusion
There are following conclusion we get.

  • The main method must be declared public, static and void in Java otherwise JVM will not able to run Java program.
  • Main method is entry point of core java application.
  • Main mthod is invoked by main thread in JVM.
  • Apart from static, void and public, you can use a final, synchronized and strictfp modifier in the signature of the main method in Java.
  • You could overload the main method in java as other method loading but JVM invoke only specific signature method as listed above.
  • static initializer call before JVM call main method.
  • You can use throws clause in the signature of the main method.
Previous
Next

One Response

  1. Amir March 15, 2018