题目内容

请问以下哪些修饰符可以用于构造器前?( )(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)

以下哪些是有关封装优点的正确描述?

A. 只需一个public方法
B. 从任何方法中没有异常抛出
C. 可以不需要改变接口来改变实现,以达到外部使用代码无需变动
D. 可以不需要改变实现来改变接口,以达到外部使用代码无需变动

给定java代码,如下:publicclassTest{staticinti; publicintaMethod(){i++;returni;} publicstaticvoidmain(String[]args){Testtest=newTest();test.aMethod(); System.out.println(test.aMethod());} }编译运行后,输出结果是()

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

答案查题题库