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 variadic function parameters

I'm new to Java, so if this is common knowledge, I'm sorry.

I would like to be able to have an undefined/indefinite amount of variables being able to be passed to a function. like in System.out.print(), I can have a lot of variables passed to it... like in System.out.print(x+" "+y); I have 3 different values.

How would I do this in my own function?

share|improve this question
2  
See varargs. – trashgod Jan 22 '12 at 4:37
2  
Actually, in the example you gave, there is only one argument; a string formed of the concatenation of a space, x, and y – Walkerneo Jan 22 '12 at 4:38
1  
varargs was introduced keeping in my mind such use-case – Umesh Awasthi Jan 22 '12 at 4:39
2  
Infinite, not possible. Arbitrary, you can do. I wish people would learn the difference :-) But you do realise that x+" "+y is not three arguments, yes? – paxdiablo Jan 22 '12 at 4:39

marked as duplicate by dasblinkenlight, trashgod, Mitch Wheat, Umesh Awasthi, Andrew Thompson Jan 22 '12 at 4:42

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.

3 Answers

up vote 7 down vote accepted

Welcome to Java and StackOverflow!

Now, what you have here with,

System.out.print(x + “ “ +y);

is that when you use the addition (+) operator, you are combining the actual parameters/arguments/variables that exist outside of the method’s scope into one argument that fits within the formal parameter... which is like a placeholder, or a reference to the variable outside the method, in the method. So what’s happening is that you’re not actually processing a bunch of variables/parameters separately, you’re processing them together.

However, Java does have a built-in way to do what you are suggesting. Variable-Length Arguments are a special way of allowing a method to have an unlimited amount of formal parameters.

Here’s an example:

public static void main(String[] args) {
    testVarArgs(1,2,3,4,5,6,7,8);
}

public static void testVarArgs(int number, int... numbers){
    for(double u: numbers)
    System.out.println(u);
    System.out.println(number);
}

This would print out:

2.0    
3.0    
4.0    
5.0    
6.0    
7.0
8.0
1

As you can see, in the method header for testVarArgs, I only had two formal parameters defined (we’ll talk about this in a second), but when I called the method... I provided eight arguments.

Now, look at my second formal parameter. When I define the case, I also added a “...”. This is what designates a Variable Length Argument. Basically, what happens is that java converts every overflow argument into an array, which is referenced to inside the method by the formal parameter’s name. What this means is that you’ll have to work with an array to work with the variable values... but using for loops, this really isn’t hard. As shown in the demo.

Hope this helps.

share|improve this answer
Variable Length Argument is misleading. I think what you mean is the "..." designates a variable number of arguments. – Gabe Kopley Jan 22 '12 at 4:44
I learned them to be called Variable-Length Arguments. forgot the hyphen, I guess. – Bry6n Jan 22 '12 at 4:47
thanks for the detailed anser – Alex Jan 22 '12 at 4:49

You can do this with varargs

public static String format(String pattern,
                            Object... arguments);

The three periods after the final parameter's type indicate that the final argument may be passed as an array or as a sequence of arguments. Varargs can be used only in the final argument position.

share|improve this answer
thanks ill look into this – Alex Jan 22 '12 at 4:49

"Infinite" arguments can be achieved with varargs.

[Note that System.out.print(x+" "+y) is not an example of varargs in action; it's simply string concatenation.]

share|improve this answer

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