When a
java class is executed from the console, the main method is what is called. In order for this to happen, the
definition of this main method must be public static void main(String []) The fact that this string array is called
args is a standard convention, but not strictly required.
read more >>