Java 为什么这么设定呢
primitive 的既然做到了autoboxing,为什么array中的primitive没有做到autoboxing,
for example:
int 可以自动转换成Integer;
为什么int[]就不能自动转换成Integer[]呢????
Java 为什么这么设定呢,弄得模糊不清
------解决方案--------------------去问sun吧
------解决方案--------------------autoboxing 不针对数组。关于 autoboxing 有这样的说法:
Autoboxing will make arrays redundant, since autoboxing allows us to use ints with collections.