设有如下代码class ArrayTest{public static vo...n(x[4]);}}哪个叙述为真?
举一反三
- 设有如下代码public class Test{long a[] = new... a[6] );}}哪个叙述为真?
- 中国大学MOOC: 设有如下代码public class Test{ static int x[] = new int[10]; public static void main ( String arg[] ) { System.out.println(x[0]); }}哪个叙述为真?
- 中国大学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 Test{ public static ... 'C'; } } 运行后输出的结果是: