阅读下列代码
public class Person{
static int arr[ ] = new int[10];
public static void main (String[] args) {
System.out.println(arr[9]);
}
}
该代码运行的结果是:
A编译时将产生错误
B编译时正确,运行时将产生错误
C输出0
D输出空
相关试题
-
阅读下列代码 public class Person{ static int arr[ ] = new int[10]; public static void main (String[] a
-
下列代码的执行结果是 public class Test { public int aMethod() { static int i=0; i++; System.out.print
-
下列代码的编译或执行结果是: public class MyVal { public static void main(String[] args) { MyVal m
-
阅读下列程序 public class VariableUse{ public static void main (String[] args) { int a; if
-
给定以下JAVA代码,这段代码编译运行后输出的结果是( ?)。???public class Test {???????public static int aMethod(int i) throws