The following code
public static void main(String[] args) {
fun(new Integer(1));
}
static void fun(Object ... a) {
System.out.println(a.getClass());
}
gives the output :-
class [Ljava.lang.Object;
What class is this?