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

Possible Duplicate:
Java, 3 dots in parameters

public static void getImages(String... folders) throws IOException{

}

In the above getImages() method, why there is three dots. What is it mean? I searched google but couldn't find anything.

share|improve this question

migrated from programmers.stackexchange.com May 15 '11 at 19:58

marked as duplicate by skaffman, thecoop, Mark Trapp, Bart Kiers, McDowell May 15 '11 at 20:21

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.

1 Answer

Yeah, punctuation is hard to search for if you don't know the technical term. In this case, it is varargs. Here is a nice link to explain it. Basically, the caller can add as many arguments as desired, and the method sees them arriving as an array of that length.

share|improve this answer
1  
A fancier term is "variadic function". – Frank Shearar May 15 '11 at 19:56
Thank you very much! This helped! – Isuru May 15 '11 at 20:01

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