classCalc{2.publicstaticvoidmain(String[]args){3.try{4.intx=Integer.parseInt("42a");5.//insertcodehere6.System.out.print("oops");7.}8.}9.}下面哪两行分别插入到第五行,会导致输出oops”?()A.}catch(ClassCastExceptionc){B.}catch(IllegalStateExceptionc){C.}catch(NumberFormatExcept

题目
classCalc{2.publicstaticvoidmain(String[]args){3.try{4.intx=Integer.parseInt("42a");5.//insertcodehere6.System.out.print("oops");7.}8.}9.}下面哪两行分别插入到第五行,会导致输出oops”?()

A.}catch(ClassCastExceptionc){

B.}catch(IllegalStateExceptionc){

C.}catch(NumberFormatExceptionn){

D.}catch(IllegalArgumentExceptione){


相似考题
更多“classCalc{2.publicstaticvoidmain(String[]args){3.try{4.intx=Integer.parseInt("42a");5.//insertcodehere6.System.out.print("oops");7.}8.}9.}下面哪两行分别插入到第五行,会导致输出oops”?() ”相关问题
  • 第1题:

    classHorseRadish{2.//insertcodehere3.protectedHorseRadish(intx){4.System.out.println(&qu

    1.classHorseRadish{2.//insertcodehere3.protectedHorseRadish(intx){4.System.out.println("bokchoy");5.}6.}7.classWasabiextendsHorseRadish{8.publicstaticvoidmain(String[]args){9.Wasabiw=newWasabi();10.}11.}分别插入到第2行,哪两项允许代码编译并产生"bokchoy"输出结果?()

    A.//justacomment

    B.protectedHorseRadish(){}

    C.protectedHorseRadish(){this(42);}

    D.protectedHorseRadish(){newHorseRadish(42);}


    参考答案:C, D

  • 第2题:

    现有1.classCalc{2.publicstaticvoidmain(String[]args){3.try{4.intx=Integer.parselnt("42a");5.//insertcodehere6.System.out.print("oops");7.}8.}9.}下面哪两行分别插入到第五行,会导致输"oops"?()

    A.}catch(IllegalArgumentExceptione){

    B.}catch(IllegalStateExceptionc){

    C.}catch(NumbelFormatExceptionn){

    D.}catch(ClassCastExceptionc){


    参考答案:A, C

  • 第3题:

    现有2个文件:packagex;publicclassX{publicstaticvoiddoX(){System.out.print("doX");}}和:classFind{publicstaticvoidmain(String[]args){//insertcodehere}}哪两行分别插入到类Find的第3行将编译并产生输出doX”?()

    A.doX();

    B.X.doX();

    C.x.X.doX();

    D.x.XmyX=newx.X();myX.doX();


    参考答案:C, D

  • 第4题:

    现有:1.importjava.util.*;2.3.ClassFindStuff{4.publicstaticvoidmain(String[]args){5,//insertcodehere6.c.put("X",123);7.}8.}分别插入到第5行,哪三行允许代码编译?()

    A.Mapc=newSortedMap();

    B.HashMapc=newHashMap();

    C.HashMapc=newHashtalole();

    D.SortedMapc=newTreeMap();

    E.ArrayListc=newArrayList();

    F.MaDc=newLinkedHashMap();


    参考答案:B, D, F

  • 第5题:

    现有:classHorseRadish{//insertcodehereprotectedHorseRadish(intx){System.out.println("bokchoy");}}classWasabiextendsHorseRadish{publicstaticvoidmain(String[]args){Wasabiw-newWasabi();}}分别插入到第2行,哪两项允许代码编译并产生”bokchoy”输出结果()

    A.protectedHorseRadish(){this(42);}

    B.protectedHorseRadish(){}

    C.//justacomment

    D.protectedHorseRadish(){newHorseRadish(42);}


    参考答案:A, D