Here we demonstrate how we can pass normal parameter along with varible arguments.
class VarExample
{ public void Test(String str, int ... arr)
{System.out.print(str + arr.length + "contents ");
for(int i : arr){
System.out.print(i+" ");}
System.out.println();
}
public static void main(String a[])
{VarExample ve =new VarExample();
ve.Test("First argument",1);
ve.Test("Second argument", 11, 12,13);
ve.Test(" No variable arguments ");
}
}


#1 by medical assistant at June 13th, 2010
What a great resource!
#2 by minority scholarship at June 15th, 2010
Keep up the good work, I like your writing.