题目内容

给定如下一个Java源文件Child.java,编译并运行Child.java,以下结果正确的是( )。class Parent1 {Parent1(String s){System.out.println(s);}}class Parent2 extends Parent1{Parent2(){System.out.println("parent2");}}public class Child extends Parent2 {public static void main(String[] args) {Child child = new Child();}}

A.编译错误:没有找到构造器Child()
B.编译错误:没有找到构造器Parent1()
C.正确运行,没有输出值
D.正确运行,输出结果为:parent2

查看答案
更多问题

给定一个Java程序Test.java的代码如下所示,编译时,会出现以下()情况。class Parent {public int count() { // 第1行return 0;}}public class Test extends Parent {private int i;public int count() { // 第2行return i % 9; // 第3行}}

A. 编译通过
B. 在第1行引发编译错误
C. 在第2行引发编译错误
D. 在第3行引发编译错误

下列JavaScript的判断语句中( )是正确的。

A. if(a==0)
B. if(a=0)
C. if a==0 then
D. if a=0 then

下列JavaScript的判断语句中( )是正确的。

A. if(a<>0) then
B. if(a!=0)
C. if a=!0 then
D. if a<>0 then

下述关于循环语句的描述中,_______是错误的。

A. 循环体内必须同时出现break语句和continue语句
B. 循环体内可以出现条件语句
C. 循环体内可以包含循环语句
D. 循环体可以是空语句,即循环体中只出现一个分号;

答案查题题库