Header Ads

  • Breaking Now

    Why main method of Java has public static void?

    It is the main entry point of a java file. Every java file has just single copy of main method from where main thread is invoked and that's why main method is static. This method can be overloaded but JVM will distinguish public static void main from rest of the overloaded main methods.

    Post Top Ad

    Post Bottom Ad