We can give parameter args[] to the main() method or choose not to. But if we would call any other parameterized method without passing enough arguments, it would give us an error.
Why it is not the case with the main(String[] args) method?
|
|||
|
|
|
An array of String is always passed, even if no command line parameters are present. In that situation the length of the array is 0, which you can test for yourself via
|
|||
|
|
|
As you see, main excepts one function argument - which is an array of strings. JVM takes care of passing any command line arguments as an array of strings to the main function. If there are no arguments given, an empty array is passed - but it's still there. You could as well have your own function defined as this:
You can then call this function, emulating passing three command-line arguments:
Or you can emulate situation where no command-line arguments are given:
You can also pass
Note that there's no null pointer check in |
|||
|
|
|
Java calls the main method itself with arguments, so there is no error on it even though we "call" without arguments. |
|||
|
|
|
Because |
||||
|
|
public void myMethod(String...array)in this way you can pass nay number of arguments even 0, and it will not give error. – medopal Sep 6 '11 at 5:49