In
Java '
args' contains the supplied command-line
arguments as an array of String objects. In other words, if you run your program as '
java MyProgram abc xyz' then '
args' will contain ["abc", "xyz"]. When a
java class is executed from the console, the
main method is what is called.
read more >>