声明对象数组 Person[] persons =new Person[3]; 是真正创建了persons对象
举一反三
- 关于ResultType取值错误的是() 未知类型:{'options': ['[select id="selectPersonCount" resultType="Integer"]_x000D_ select count(*) from_x000D_ person[/]', '[select id="selectPersonCount" resultType="int"] select count(*) from person[/]', '[select id="selectPersonCount" resultType="_int"] select count(*) from person[/]', '[select id="selectPersonCount" resultType="java.lang.Integer"] select count(*) from person[/]'], 'type': 102}
- 个选项可以正确创建一个长度为3的二维数组new int[2][3]new int[3][]new int[][3]以上答案皆不对
- 关于二维数组的创建,以下做法正确的是:(1)int a[][] =new int[4][5](2)int a[][] =new int[4][]; a[0]=new int[10]; a[1]=new int[20];(3)int a[][]; a=new int[3][]; a[0]=new int[3]; a[1]={1,2};a[2]={1,2,3}; A: (1)(2)(3) B: (1)(2) C: (1)(3) D: (1)
- 以下哪个选项可以正确创建一个长度为3的二维数组?()选项:A:new int[2][3]B:new int[3][]C:new int[][3]D:其余 A: new int[2][3] B: new int[3][] C: new int[][3] D: 其余选项都不对
- 假设数组a定义为int [][] a=new int[3][4],则a是