Possible Duplicate:
What is “String args[]”? in Java
What is the purpose of this method in java. If we not use what happens? If i give some array size then what happens
What is the purpose of this method in java. If we not use what happens? If i give some array size then what happens |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
It's for passing in command line arguments: http://download.oracle.com/docs/cd/E17409_01/javase/tutorial/essential/environment/cmdLineArgs.html I think you have to have it declared in the main method (but you don't have to use it). I don't think you can give it an array size. |
|||
|
|
|
The args array contains all command line parameters passed in to your Java application. For example, if you call your application like this:
Then args[] will be an array of the following strings:
You can give it any name you want -- it doesn't have to be called |
|||||||
|
|
Passing arguments from the command Line. Which can be used by the program as a set of parameters to operate upon or produce a result based on a set of known parameters. |
|||
|
|
|
The The Java Language Specification doesn't seem to define the semantics of args, so I presume it is up to the JVM itself to determine how to populate the array. I can imagine that platforms such as Android can have other ways of populating the array. |
|||
|
|
It passes any command line arguments to your Java application. For example, if you run your app as:
then the JVM tries to execute
It provides an entry point that allows you to run the application from the command line. If you don't supply a suitable
You get a Java compilation error; e.g.
is invalid Java. An array type declaration does not have a size, because the size is not part of an array type. The size of a Java array is a runtime attribute that is only determined when the array instance is created. |
||||
|
|