I'm very beginner for programming.
In Java.
public static void main(String []args)
What's String args? and What kind of case do you use args at? I am fortunate when I have you teach it with source codes and examples.
|
|
|
|
|
|
|
Those are for command-line arguments in Java. In other words, if you run
Then
|
||
|
|
|
|
Then |
|||
|
|
|
|
In this method signature, the array
|
||
|
|
|
|
When a java class is executed from the console, the main method is what is called. In order for this to happen, the definition of this main method must be
The fact that this string array is called args is a standard convention, but not strictly required. You would populate this array at the command line whne you invoke your program
These are commonly used to define options of your program, for example files to write to or read from. |
||
|
|
|
|
Those are for command-line arguments in Java. In other words, if you run
Then args contains: [ "one", "two" ]
The reason for this is to configure your application to run a particular way or provide it with some piece of information it needs. If you are new to java a highly recommend reading through the sun tutorials |
||
|
|