A.Employee[3]e; B.Employee[]e=newEmployee[3]; C.Employeee[3]; D.Employee[3]e=newEmployee[];
单项选择题下面哪条语句是不正确的()
A.int[]a={1,2,3}; B.inta[]=newint[4]; C.int[]a=newint[]; D.int[]a=newint[]{2,3,4};
单项选择题下面哪条语句不正确?()
A.int[4]a; B.inta[]; C.int[]a; D.int[]a,b;
单项选择题数组中可以存什么类型的数据?()
A.只能存基本数据类型 B.只能存引用类型 C.都可以 D.都不可以
单项选择题数组是什么类型?()
A.引用类型B.基本数据类型C.不能确定D.其他类型
单项选择题上列代码在JDK1.5以上版本执行的结果是()
A.抛出异常 B.输出truefalse C.输出truetrue D.输出falsefalse