Coding i came around to check for the vararg performance of Java.
I write following test code:
public class T { public static void main(String[
As said, an array is maintained when using var-args...,
you should also try to see the influence of adding "final" to the parameters of every methods
i personally get an improvement from 2250 -> 2234 ms for the array.