Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Java array argument “declaration” syntax

I have seen ... to be used in between of object type and object name in java. I get the idea that it represents collection of the object. Note the following examples:

public setMembers(Member... members);
Map map = ...;

My question is what "..." really means? I have never seen this in any documentation where they explained it.

share|improve this question
This is java 5 feature download.oracle.com/javase/1.5.0/docs/guide/language/… – greg Jan 6 '11 at 19:36
(Member... members) I have seen, and am certain that is valid, as answered below. Map map = ... I have not seen, and I am quite sure that is not valid Java code. – corsiKa Jan 7 '11 at 5:22

marked as duplicate by Woot4Moo, Karl Knechtel, Josh Lee, marcog, Bart Kiers Jan 7 '11 at 14:52

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.

4 Answers

up vote 15 down vote accepted

It is varargs

In simple term its an Array of Member like

public setMembers(Member[] members);

When to use:

Generally while designing API it is good to use when number of argument is not fixed.

Example from standard API of this is String.format(String format,Object... args)

Also See

share|improve this answer

It's the so-called varargs syntax. In the method body, you can read the members parameter as it were an array - actually, it /is/ 'just' an array.

However, the magic bit is in calling the method. Before the varargs syntax was introduced, you'd call the method a bit like so:

setMembers(new Members[] {member1, member2, member3});

With the new varargs syntax however, you don't need to explicitly create the array anymore, and you can pass:

setMembers(member1, member2, member3);

This does mean however that a varargs argument has to be the last argument in a method. Something like this is therefore not permitted:

void setMembers(Member ... members, String memberType);

Summarized: It's a bit of syntactic sugar, really. I'm no expert on the inner workings of the Java compiler, but I'm pretty sure that methods calling a method that accept a varargs parameter are rebuilt into methods that build an array of the given type.

share|improve this answer

You might want to read up on Using Variable Arguments (or varargs) in Java.

share|improve this answer

It means you can pass zero or more Member objects to the setMembers() method. In the setMembers method, members will have array semantics.

share|improve this answer

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