Moving away from the age old way of fixed arguments, Java supports variable arguments. The code sample below illustrates variable arguments.
If the method has multiple arguments, it is mandatory to have only the last argument as the variable argument.
public class UnderstandingVarArgs{ public static void main(String args[]) { UnderstandingVarArgs understandingVarArgs = new UnderstandingVarArgs(); understandingVarArgs.proceed(5, 6, 7, 4); understandingVarArgs.proceed("Hello", " my", " name"); } private void proceed(int... varArg) { System.out.println("Overloaded int method."); System.out.println("No of arguments of type int: " + varArg.length); } private void proceed(String... varArg) { System.out.println("Overloaded String method."); System.out.println("No of arguments of type String: " + varArg.length); }}/*
Expected output:
[[email protected]]# java UnderstandingVarArgsOverloaded int method.No of arguments of type int: 4Overloaded String method.No of arguments of type String: 3*/