These arguments are specified by three dots after the type. but i don't know what mean of ... in the method
public static void printNumberOfArguments(int... numbers) {
System.out.println(numbers.length);
}
and also in documentation
public static void method(long.. vararg) { /* do something */ }
this is wrong i don't know why?