More about the main function

The following code defines main method:
public static void main(String[] args)
{
}
A method has a collection of programming instructions that are required to execute a particular task. Every Java application should have a main method. But most java class programs have other methods.
Consider the following links:
b) or back to More about the classes
n) or next to More about the System.out.println statement
x) or out to Your first Java program

Links:
More about the class
More about the System.out.println statement
Your first Java program