OnJava8-Examples/housekeeping/NewVarArgs.java
2016-07-22 14:45:35 -06:00

31 lines
879 B
Java

// housekeeping/NewVarArgs.java
// (c)2016 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
// Using array syntax to create variable argument lists
public class NewVarArgs {
static void printArray(Object... args) {
for(Object obj : args)
System.out.print(obj + " ");
System.out.println();
}
public static void main(String[] args) {
// Can take individual elements:
printArray(47, (float) 3.14, 11.11);
printArray(47, 3.14F, 11.11);
printArray("one", "two", "three");
printArray(new A(), new A(), new A());
// Or an array:
printArray((Object[])new Integer[]{ 1, 2, 3, 4 });
printArray(); // Empty list is OK
}
}
/* Output:
47 3.14 11.11
47 3.14 11.11
one two three
A@1db9742 A@106d69c A@52e922
1 2 3 4
*/