Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What do the 3 dots in the following method mean?

public void myMethod(String... strings){
    // method body
}
share|improve this question
7  
As it is not Android-specific but a generic Java question, could you remove reference to Android? – Lorenzo Jul 1 '10 at 14:36
You should work on your accept rate.. – Knownasilya Jan 18 at 19:59

4 Answers

up vote 95 down vote accepted

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:

myMethod(); // Likely useless, but possible
myMethod("one", "two", "three");
myMethod("solo");
myMethod(new String[]{"a", "b", "c"});

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 ... must be the last in the method signature. So, myMethod(int i, String... strings) is okay, but myMethod(String... strings, int i) is not okay.

Thanks to Vash for the clarifications in his comment.

share|improve this answer
1  
See, I can add other people's answers to mine too. ;) – kiswa Jul 1 '10 at 15:06
15  
You are mistaken, in that "one or more", with varargs we can specify 0 or more, and this has to be always the last parameter in method. The method x(String... params) can be call as x() or method y(String pram, String... params) can be call as y("1") – Vash Jul 22 '10 at 7:50
2  
+1 to you, and updated the answer to include your clarifications. – kiswa Jul 23 '10 at 17:15
I wish if this would have worked too. myMethod("one","two","three", new String[] {"a","b","c""}); – 2sb Apr 3 at 20:34
Why are you allowed to give the method 0 parameters? That will most likely lead to ArrayIndexOutOfBoundsException. Now you always have to take that case into consideration. – Olle Söderström May 16 at 12:23
show 1 more comment

That feature is called varargs, and it's a feature introduced in Java 5. It means that function can receive multiple String arguments:

myMethod("foo", "bar");
myMethod("foo", "bar", "baz");
myMethod(new String[]{"foo", "var", "baz"}); // you can even pass an array

Then, you can use the String var as an array:

public void myMethod(String... strings){
    for(String whatever : strings){
        // do what ever you want
    }

    // the code above is is equivalent to
    for( int i = 0; i < strings.length; i++){
        // classical for. In this case you use strings[i]
    }
}

This answer borrows heavily from kiswa's and Lorenzo's... and also from the Graphain's comment.

share|improve this answer
4  
When the code hits the bytecode, it is an array. Everything else is syntax supported just by the compiler. – Donal Fellows Jul 1 '10 at 14:50
This answer borrows heavily from kiswa's and Lorenzo's if I read the edits correctly. – Matt Mitchell Jul 22 '10 at 3:37
@Graphaian yes, sir. – Cristian Jul 22 '10 at 4:31
1  
@Graph 'tis better to edit your answer and make it more correct than to leave it alone. And if another answer is the source of your improvement, so it goes. At least he's honest about it (and I assume he upvoted the other answers that helped him... right?). – Will Jul 22 '10 at 12:45
1  
@Will he's honest after I pointed it out which is fine enough. Thanks for looking. – Matt Mitchell Jul 23 '10 at 0:40

This is the Java way to pass varargs (variable number arguments).

If you are familiar with C, this is similar to the ... syntax used it the printf function:

int printf(const char * format, ...);

but in a type safe fashion: every argument has to comply with the specified type (in your sample, they should be all String).

This is a simple sample of how you can use varargs:

class VarargSample {

   public static void PrintMultipleStrings(String... strings) {
      for( String s : strings ) {
          System.out.println(s);
      }
   }

   public static void main(String... args) {
      PrintMultipleStrings("Hello", "world");
   }
}

The ... argument is actually an array, so you could pass a String[] as the parameter.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.