I did this
package mypack;
public class Test {
public static void main(String[] args) {
int[] array;
array = new int[3];
System.out.println(new Test().getClass());
System.out.println(array.getClass());
System.out.println("After array class");
}
}
and i got the output as
class mypack.Test
class [I
After array class
I dont understand the meaning of that class [I.... Can anyone explain whats going on?