题目内容

给出以下代码,请问以下哪些语句放置在第六行会引起编译错误?( )1.class Super{2.public float getNum(){return 3.0f;}3.}4.5.public class Sub extends Super{6.7}请选择一个正确答案

A. (1)public float getNum() {return 4.0f;}
B. (2)public void getNum(){}
C. (3) public void getNumdouble (){}
D. (4)public double getNumfoat (){return 4.0d;}

查看答案
更多问题

给定如下一个Java源文件Child.java,编译并运行Child.java,以下结果正确的是()。 classParent1{ Parent1(Strings){ System.out.println(s);}} classParent2extendsParent1{Parent2(){ System.out.println("parent2");} } publicclassChildextendsParent2{ publicstaticvoidmain(String[]args){Childchild=newChild();}}

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

请问,当一个类的所有构造器均有为私有的,以下哪些描述是正确的?( )(1)不能被其他类实例化。(2)不能被其他类继承。(3)既不能被其他类实例化,也不能被其他类继承。(4)该类必须被声明为final.

A. 1
B. 2
C. 3
D. 4

给出以下代码,请问该程序的运行结果是什么?( )interface Base {int k = 0;}public class Example implements Base {public static void main(String args[]) {int i;Example exm = new Example();i = exm.k;i = Example.k;i = Base.k;System.out.print(i);}}请选择出所有正确的答案:

A. (1)无内容输出。
B. (2)代码编译失败。
C. (3)打印输出0.
D. (4)打印输出1

给定java代码,如下:classParent{ publicvoidcount(int i ){System.out.println(10%3);}} publicclassTestextendsParent{publicvoidcount(inti){System.out.println(10%i);} publicstaticvoidmain(String[]args){Parentp=newTest();p.count(3);}}编译运行,结果是()。

A. 1
B. 3
C. 3.333333333333335
D. 编译错误

答案查题题库