itgle.com

classA{publicA(){System.out.println(hellofroma”);}}classBextendsA{publicB(){System.out.println(hellofromb”);super();}}publicclassTest{publicstaticvoidmain(Stringargs[]){Aa=newB();}}Whatistheresultwhenmainisexecuted?()A.Compilationfails.B.hellofromaC.hello

题目

classA{publicA(){System.out.println(hellofroma”);}}classBextendsA{publicB(){System.out.println(hellofromb”);super();}}publicclassTest{publicstaticvoidmain(Stringargs[]){Aa=newB();}}Whatistheresultwhenmainisexecuted?()

A.Compilationfails.

B.hellofroma

C.hellofromb

D.hellofrombhellofroma

E.hellofromahellofromb


相似考题
更多“classA{publicA(){System.out.println(hellofroma”);}}classBextendsA{publicB(){System.out.pri ”相关问题
  • 第1题:

    Whatproducesacompilererror?()

    A.classA{publicA(intx){}}

    B.classA{}classBextendsA{B(){}}

    C.classA{A(){}}classB{publicB(){}}

    D.classZ{publicZ(int){}}classAextendsZ{}


    参考答案:D

  • 第2题:

    给出下列的代码,则下列选项中哪个是类A合理的内部类? class A { protected int i; A(int i) { this.i=i; } }

    A.class B { }

    B.class B extends A { }

    C.class B extends A { B( ){System.out.println("="+i);} }

    D.class A { }


    正确答案:A
    解析:在定义内部类时,内外部类不能同名,不存在继承关系,可以把内部类当成类的成员。

  • 第3题:

    23、假定类A已经定义,对于以A为基类的单一继承类B,以下定义中正确的是:()

    A.class B:public A{//...};

    B.class A:public B{//...};

    C.class B:public class A{//...};

    D.class A:class B public{//...};


    class B:public A{//...};

  • 第4题:

    InwhichtwocasesdoesthecompilersupplyadefaultconstructorforclassA?()

    A.classA{}

    B.classA{publicA(){}}

    C.classA{publicA(intx){}}

    D.classZ{}classAextendsZ{voidA(){}}


    参考答案:A, D

  • 第5题:

    给出—卜列的代码,则下列选项中( )可以表示为类A合理的内部类。 class A{ protected int i; A (int i) { this i=i; }}

    A.class B{ }

    B.class B extends A{ }

    C.class B extends A{ B ( ){System.out.println("i="+i);} }

    D.class A{ }


    正确答案:A