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

Can you tell me if I am correct in this question? It's a homework question, I don't want the answer. I just want to make sure that I am correct.

It is possible to declare a method that will allow a variable number of parameters.
The symbolism used in the definition that indicate that the method should allow a variable number of parameters is _

Answer: varargs

share|improve this question

4 Answers

up vote 7 down vote accepted

The wording of the question is somewhat ambiguous. While varargs is the technical name for it, I'm inclined to think that the question is actually asking what syntax is used in order to indicate a varargs parameter.

share|improve this answer
4  
Perhaps I should add as an addendum that simply putting "..." as your answer might not get the result you hope for. – Anon. Feb 25 '10 at 1:44

That's correct. You can find more about it in this Sun guide.

Here's an example:

void foo(String... args) {
    for (String arg : args) {
        System.out.println(arg);
    }
}

which can be called as

foo("foo"); // Single arg.
foo("foo", "bar"); // Multiple args.
foo("foo", "bar", "lol"); // Don't matter how many!
foo(new String[] { "foo", "bar" }); // Arrays are also accepted.
share|improve this answer
7  
"It's a homework question, I don't want the answer." – S.Lott Feb 25 '10 at 1:30
I just confirmed the doubt and gave an example. – BalusC Feb 25 '10 at 11:18

Yes, it's possible:

public void myMethod(int...numbers) { ... }
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.