本帖最后由 侯伟浩 于 2011-11-28 17:02 编辑
这样对- public class Test2 {
- public static void main(String[] args) {
- int i=1;
- method(i);
-
- }
- public static void method(Integer in)
- {
- }
- }
复制代码 这样为什么错?- public class Test2 {
- public static void main(String[] args) {
- int [] i=new int[10];
- method(i); //不通过编译
-
- }
- public static void method(Integer[] in)
- {
- }
- }
复制代码 |