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: 出现编译错误
A: 运行出错
B: 输出 0
C: 输出 null
D: 出现编译错误
举一反三
- 中国大学MOOC: public class ArrayTest{ public static void main ( String args[] ) { String s[] = new String[5]; System.out.println(s[0]); }}哪个叙述为真?
- 设有如下代码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
- 下面代码的运行结果为:( )public class Qlac{static String arr[] = new String[5];public static void main(String args[ ]) {System.out.println(arr[1]);}} A: 编译正确,运行时将产生错误 B: 输出0 C: 输出null D: 编译时将产生错误
- 以下程序运行结果为? public class Q { public static void main(String argv[]) { String a[]= new String[5]; System.out.println(a[0]); } }
- 下列语句输出结果为( )。public class test{public static void main(String args []){String s1=new String("How");String s2=new String("How");System.out. println(!(s1 ==s2));} A: false B: true C: 1 D: 0