此类提供了创建和操作数组的一系列静态(static)本地(native)方法。这些功能即使不通过此类,也可以实现,比如创建数组。
Object arr = Array.newInstance(Integer.class , 2);//使用Array类创建数组 int [] a = new int [2];//不适用Array方法也可以实现创建数组的功能
另外给元素赋值和获取元素值也是这种情况。那么Array类存在的意义是什么呢?或者说上面两种实现方式有什么不同呢?
业精于勤,荒于嬉;行成于思,毁于随。
What should you do with dynamic objects? Create an array of the same type as the A object.You can only use the reflection API
What should you do with dynamic objects? Create an array of the same type as the A object.
You can only use the reflection API