题目内容

阅读下面代码: classTestSuper{TestSuper(inti) {System.out.println("TestSuper");}} classTestSubextendsTestSuper{TestSub(){System.out.println("TestSub");}}classTestAll{publicstaticvoidmain(String[]args){newTestSub();}}正确的是()

A. 编译出错
B. 代码可正常运行,并打印出TestSuper
C. 代码可正常运行,并打印出TestSub
D. 代码在运行中将会出现Exception

查看答案
更多问题

以下关于Object类说法错误的是()。

A. 一切类都直接或间接继承自Object类
B. 接口亦继承Object类
C. Object类中定义了toString()方法
D. Object类在java.lang包中

请问以下哪些修饰符可以用于构造器前?( )(1)Final(2)Static(3)Synchronized(4)Native(5)以上选项均不行。

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

给出以下代码,请问程序的运行结果是什么?( )public class Example{int maxElements;void Example(){maxElements = 100;System.out.println (maxElements);}Example(int t){maxElements = I;System.out.println (maxElements);}public static void main (System[] args){Example a=new Example();Example b=new Example(999);}}请选择 正确的答案:

A. 打印输出从100~999
B. 打印输出从999~100
C. 代码编译失败
D. 代码编译成功

现有以下现实中的关系,请问哪一个代码能正确体现这个关系?店员(Employee)是一个人(Person),一个店员负责招待一个或多个客人(Dependants)。( )(1)class Employee extends Dependants{person p;}(2)class person extends Employee{Vector dependants;}(3)class Employee extends Person{Vector dependants;}(4)abstract class Person extends Dependants{Employee e;}(5)class Dependant implements Employee{Vector person;}

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

答案查题题库