A students asks: So after almost 4 months of the most exciting class I have
ever taken, can you finally tell me what the String[] argv means
for main methods???
Answer: COMMAND LINE ARGUMENTS!
Strings that are provided to porgram on the command line.
Example: java Words We Love CPSC 101
class Words {
public static void main (String[] argv) {
int num = argv.length;
int i;
for (i = 0; i < num; i++)
System.out.println (argv[i]);
}
}