Explain the following line used under Java Program ? public static void main (String args[ ])

Short Answer
Views 968

Answer:

The following shows the explanation individually ?

public ? it is the access specifier.

static ? it allows main() to be called without instantiating a particular instance of a class.

void ? it affirns the compiler that no value is returned by main().

main() ? this method is called at the beginning of a Java program.

String args[ ] ? args parameter is an instance array of class String.

Related Articles:

This section is dedicated exclusively to Questions & Answers. For an in-depth exploration of Java Programming Language, click the links and dive deeper into this subject.

Join Our telegram group to ask Questions

Click below button to join our groups.