main()
public static void main(String args[]) {
- This application contains as single method, named main(), which is the entry point for Java applications.
- It is possible to pass information into the application at run time, this is done by the arguments, passed in through the String args[] parameters.
- More about this in later chapters.