Possible Duplicate:
varargs and the '…' argument
Java, 3 dots in parameters
I saw this definition in my android java file. It looks just like String[]. Are they different? Thank you.
I saw this definition in my android java file. It looks just like String[]. Are they different? Thank you. |
|||||||||
|
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.
|
There are couple if cool things about it:
|
||||
|
|
|
It's syntax for writing the items of the array as a parameter for instance:
Then you can call this method with The javacompiler will create an array of the parameters on its own. |
||||
|
It's for defining a method with a variable number of arguments. |
|||
|
|
|
It's a vararg, variable number of arguments. In the method body you treat it as a String[], but when you call the method you can either chose to supply a String[] or simply enumerate your values.
Was introduced with Java 5. |
|||
|
|
|
you must pass array to it:
If method is defined as:
You can call it either
or
|
|||
|
|