public static void main (string args[]) Explanation

In Java, JVM (Java Virtual Machine) will always look for a specific method signature to start running an application, and that would be the public static void main (String args[]). The main() method represents the entry point of Java programs, and knowing how to use it correctly is very important.

Syntax

class JBT {
  public static void main(String args[]) {
    System.out.println("Hello JBT");
  }
}

In the above application example, we are using the public static void main. Each word has a different meaning and purpose. Keep learning to know more about each and every keyword.

Public

It is an Access Modifier, which defines who can access this Method. Public means that this Method will be accessible by any Class(If other Classes can access this Class.).

Static

Static is a keyword that identifies the class-related thing. It means the given Method or variable is not instance-related but Class related. It can be accessed without creating the instance of a Class.

Void

It is used to define the Return Type of the Method. It defines what the method can return. Void means the Method will not return any value.

main

Main is the name of the Method. This Method name is searched by JVM as a starting point for an application with a particular signature only.

String args[] / String… args

Here args is an argument of the type String array. Which is used to pass the command-line argument to the main method. Though the type of the argument (String array) is fixed, you can still change the name from args to anything.
Also with the introduction of java args, instead of writing String args[], String… args can be used.  You can either use String array (String args[]) or var args(String… args) variable of String type. Both will work the same way.

Given all the options, the syntaxes of the main methods are the same and all will work fine.

public static void main(String[] args)
public static void main(String args[])
public static void main(String jbt[]) 
public static void main(String... jbt)

78 Comments

  1. Hi, Good explanation!
    If I have a Main class (Main.java) and two more classes, Schoolmember and Staff (Schoolmember.java and Staff.java), do I have to have “public static void main(String[] args)” in all of these or only in Main?
    Thank You

    Leslie

    • Sorry for the late reply. It depends on what you want to achieve. Main is supposed to work as starting point of the application.
      If you are using other classes in Main.java and trying to invoke those methods from Main.java then one main method in Main.java is enough.

      But if these classes are independent and you want to execute them individually then they need to have main method too.

  2. i found it nice and easy to understand the topic of the public static void main . It would be better to explain it using video . Than it gates to our mind and if we want to tack it out also it will not come .

  3. Hi, I already knew the main method is the entry point of the program and makes it execute the program properly but this explanation is really good for adults and kids. Thank you very much. This helped me a lot for public static void main(String[] args). I appreciated it a lot. I am a seven year old kid and I love programming.

  4. A Java program is a sequence of Java instructions that are executed in a certain order. Since the Java instructions are executed in a certain order, a Java program has a start and an end.

  5. why we are using string[] args in pubic static void main(String[] args) why we are not using character array or int array i need elabrate answer

    • You can write main method without static keyword, there will not be any issue. But it will not work as expected. It will be treated as normal method and in order to execute it you need to call given method explicitly. While static keyword will make this method to be treated as entry point. Hope it clarifies.

  6. thank u for update ur information
    i have some cofusion in null point exception
    please send me a link of ur site in null point exception

  7. Can you please explain…how internally works these SYSOUT statement??
    System.out.println(“args[” +i+ “]:”+args[i] );
    System.out.println(“args[ i ]:”+args[i] );

  8. I want list and description of in build classes and their sub classes…like printsteam is class and println() is its method…

    • Hi Vinod,

      Public and static keyword position can be changed. There is no such rule of using public before static. But as void is method return type it should come just before method name which is main in this case. Hence this sequence.
      public static void main
      static public void main.

      Both are same. But as a standard we right as in the first case.

    • It is shortcut English grammar that is enough for developers to understand each other so they can write efficient English with minimal words – like good programming style that is less verbose

  9. Hi,

    I want to know why JVM treats main(String [] args) method as a starting point of program, can anyone tell me the internal functioning of this method, like how it gets execute and what threads are required to execute this method so that JVM can understand this method as the starting point of the program.?

    • Suppose you are watching a movie and the scene of movie starts from middle of a story and as you continue watching movie, u need to understand the current scene of movie and for that movie makes gives u a starting part of movie in somewhere middle of movie(Gives you information something like” 15years before ” in movie)..by reading this words in movie you get to know the starting of movie…
      So likewise u place you main method anywhere in program(inside class) the JVM will read full code in its language to find main() method and starts acknowledging(executing) the code from main method…
      and if you dont provide main() method in code the JVM will not understand the story of your code will give error…

  10. good explanation but give me parameters at the same time explanation. i mean which type of parameters in using java.
    and please give me different meanings Hello and hello in java

  11. My program still runs if I use other word instead of args in “String[] args”(Parameter to main method). I want to know the reason behind it.

  12. Why “String[] ags” is passed as parameter of main function and without passing this parameter what will happen?

  13. String args[] : Parameter to main method…

    Please site how to use the main() with values given to parameters (like what the difference would be with (or without) these values).

    • If u dont use it shows error in execution….that y we r passing infinite arguments in String type…string is one.type of class ….so,first letter is capital

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.