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.
x+" "+yis not three arguments, yes? – paxdiablo Jan 22 '12 at 4:39