下列代码的编译或执行结果是:
public class MyVal {
public static void main(String[] args) {
MyVal m = new MyVal();
m.aMethod();
}
public void aMethod(){
boolean [] b = new Boolean [5];
System.out.println(b[0]);
}
}
A1
Bnull
C0
D编译错误
相关试题
-
下列代码的编译或执行结果是: public class MyVal { public static void main(String[] args) { MyVal m
-
下列代码的执行结果是 public class Test { public int aMethod() { static int i=0; i++; System.out.print
-
给定以下JAVA代码,这段代码编译运行后输出的结果是( ?)。???public class Test {???????public static int aMethod(int i) throws
-
阅读下列代码 public class Person{ static int arr[ ] = new int[10]; public static void main (String[] a
-
super.m(); } public static void main(String [] args) { new B().m();