设有如下代码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]); }}哪个叙述为真?
- 设有如下代码class ArrayTest{public static vo...n(x[4]);}}哪个叙述为真?
- 设有如下代码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
- 有如下代码,则该程序运行时输出结果是。 class Test{ static int i=0; public void show() { i++; System.out.println(i); } } public class Demo { public static void main(String[] args) { Test test=new Test(); test.show(); } }
- 有如下代码: public class Test{ public static ... 'C'; } } 运行后输出的结果是: