- class Test
- {
- public static void main(String[] args)
- {
- int[] a = new int[]{1,2,3};
-
- System.out.println(a.getClass());
- System.out.println(a.getClass().getSuperclass());
- }
- }
复制代码 这样测试了一下, 输出的结果是:
class [I
class java.lang.Object
这样说明整型数组是 [I 类,
整型数组的父类是 Object类,
[I 可以理解成一个类名称吗? |