What do the 3 dots in the following method mean?
public void myMethod(String... strings){
// method body
}
|
|
It means that zero or more String objects (or an array of them) may be passed as the parameter(s) for that function. See the "Arbitrary Number of Arguments" section here: http://java.sun.com/docs/books/tutorial/java/javaOO/arguments.html#varargs In your example, you could call it as any of the following:
Important Note: The parameter(s) passed in this way is always an array - even if there's just one. Make sure you treat it that way in the method body. Important Note 2: The parameter that gets the Thanks to Vash for the clarifications in his comment. |
|||||||||||||||||
|
|
That feature is called varargs, and it's a feature introduced in Java 5. It means that function can receive multiple
Then, you can use the
This answer borrows heavily from kiswa's and Lorenzo's... and also from the Graphain's comment. |
|||||||||||||||||
|
|
This is the Java way to pass varargs (variable number arguments). If you are familiar with C, this is similar to the
but in a type safe fashion: every argument has to comply with the specified type (in your sample, they should be all This is a simple sample of how you can use varargs:
The |
||||
|
|
|
Arguably, it is an example of syntactic sugar, since it is implemented as an array anyways (which doesn't mean it's useless) - I prefer passing an array to keep it clear, and also declare methods with arrays of given type. Rather an opinion than an answer, though. |
|||
|
|