在java中使用类而不是原语

时间:2018-02-27 18:40:52

标签: java class

考虑我们要定义一个整数数组。

我们有两个选择:

1:Integer[] a=new Integer[5];

2:int[] a=new int[5]

所以我们总是可以使用第一个,因为它是一个类,它有很多有用的方法。

那我们为什么要使用第二个?

0 个答案:

没有答案