DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Java Var Args
// description of your code here
// A simple method to process variable arguments in java
public static void printVarArgs (int ... ints)
{
System.out.println(ints.length);
System.out.println(ints[1]);
for (int i : ints)
{
System.out.println(i);
}
}





