题目内容

给定如下一个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. 编译错误

使用Java实现封装,第一步是修改属性可见性来限制对属性的访问,第二步是创建赋值和取值方法,用于对属性的访问,第三步应该是()

A. 使用赋值和取值方法访问属性
B. 编写常规方法访问属性
C. 在赋值和取值方法中,加入对属性的存取限制
D. 编写main方法创建对象,调用赋值和取值方法访问属性

答案查题题库