【单选题】下列代码的执行结果是 public class Test{ public int aMethod( ) { static int i=0; i+ +; System.out.println(i); } public static void main(String args[ ]){ Test test = new Test( ); test.aMethod( ); } }
【单选题】对于下列代码,下列哪个叙述是正确的? A. 程序提示编译错误(原因是A类没有不带参数的构造方法) B. 编译无错误,【代码】输出结果是0。 C. 编译无错误,【代码】输出结果是1。 D. 编译无错误,【代码】输出结果是2。 class A { public int i=0; A(int m) { i = 1; } } public class B extends A { B(int m) { i ...