设有如下代码public class Test{ static int x[] = new int[10]; public static void main ( String arg[] ) { System.out.println(x[0]); }}哪个叙述为真?
A: 运行出错
B: 出现编译错误
C: 输出 0
D: 输出 null
A: 运行出错
B: 出现编译错误
C: 输出 0
D: 输出 null
举一反三
- 中国大学MOOC: 设有如下代码public class Test{ static int x[] = new int[10]; public static void main ( String arg[] ) { System.out.println(x[0]); }}哪个叙述为真?
- public class ArrayTest{ public static void main ( String args[] ) { String s[] = new String[5]; System.out.println(s[0]); }}哪个叙述为真? A: 运行出错 B: 输出 0 C: 输出 null D: 出现编译错误
- 对于下列Test.java代码,描述正确的是:public class Test{public static void main(String arrgs[]){int arr[]=new int[10];System.out.println(arr[1]);}} A: 产生编译错误 B: 输出null C: 编译正确,发生运行异常 D: 输出0
- 关于下面的代码,________是对的。public class Test2{int arr[]=new int[10];public static void main(String args[]){Systme.out.println(arr[1]);}} A: 编译出错 B: 编译正确,运行出错 C: 输出0 D: 输出null
- class A0{ public static void main(String[] args){ int[] z = new int[10]; z[0] = 223; z[1] = 23; int[] x = {23,32,43,12,43}; System.out.println(z[0]); System.out.println(z[1]); System.out.println(x[3]); System.out.println(x[0]); }}输出结果是:223231223