I\'m the product of some broken teaching and I need some help. I know that there is this thing called the \"main method\" in Java and I\'m sure other programming languages.
Breaking this down, point-by-point, for the general case:
main() method;main executes in order until the end of main is reached -- this is when your program terminates;static mean? static means that you don't have to instantiate a class to call the method;String[] args is an array of String objects. If you were to run your program on the command line, you could pass in parameters as arguments. These parameters can then be accessed as you would access elements in an array: args[0]...args[n];public means that the method can be called by any object.