1 package test3; 2 3 class InvokeArrayEle { 4 String name; 5 } 6 7 public class InvokeArray { test()8 public int test() { 9 return doit(new InvokeArrayEle[3]); 10 } doit(InvokeArrayEle[] ae)11 public int doit(InvokeArrayEle[] ae) { 12 Object[] ae2 = (Object[])ae.clone(); 13 return ae2.length; 14 } 15 }