网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
现有:1InterfaceF{}2classAimplementsF{}3classBextendsA{}4classCextendsB{5publicstaticvoidmain(String[]args){6Bb=newB();7//inSertC0dehere8}9}下列哪行代码插入到第7行,将抛出java.lang.ClassCaseException异常()

A.Aa=b;

B.Ff=(C)b;

C.Ff=(A)b;

D.Bbb=(B)(A)b;


参考答案

更多 “ 现有:1InterfaceF{}2classAimplementsF{}3classBextendsA{}4classCextendsB{5publicstaticvoidmain(String[]args){6Bb=newB();7//inSertC0dehere8}9}下列哪行代码插入到第7行,将抛出java.lang.ClassCaseException异常() A.Aa=b;B.Ff=(C)b;C.Ff=(A)b;D.Bbb=(B)(A)b; ” 相关考题
考题 考虑下列Java代码:ClasscA{Publicstaticvoidmain(String[]args){Try{System.out.println(hello,world”)}}}其中错误的是()。 A.没有catch或finally块B.没有抛出异常的代码不能出现在try代码块内C.如果没有catch块而使用try,main()会总是抛出异常.D.classA没有throwsIOException

考题 考虑下列Java代码:classA{publicstaticvoidmain(String[]args){try{System.out.println(Hello,World!);}}}其中的错误是()。 A.没有catch或finally块B.没有抛出异常的代码不能出现在try代码块内C.如果没有catch块而使用try,main()会总是抛出异常.D.classA没有throwsIOException

考题 阅读下列代码 public class Test implements Runnable{ public void run(Thread t){ System. out. println("Running. "); } public static void main(String[]args){ Thread tt=new Thread(new Test()); tt. start(); } } 代码运行结果是A.将抛出一个异常B.没有输出并正常结束C.输出“Running”并正常结束D.程序第2行将出现一个编译错误

考题 现有:1.classBook{2.privatefinalvoidread(){System.out.print(book);}3.}4.classPageextendsBook{5.publicstaticvoidmain(String[]args){6.//insertcodehere7.}8.privatefinalvoidread(){System.out.print(page);}9.}和如下三个代码片段(x,y,z):x.//justacommenty.newPage().read();z.newBook().read();分别插入到第6行,有几个允许代码通过编译并可以运行且无异常?()A.0B.1C.2D.3

考题 现有:1.classBook{2.book);}3.}4.classPageextendsBook{5.publicstaticvoidmain(String[]args){6.//insertcodehere7.}8.privatefinalvoidread(){System.out.print(page);}9.}和如下三个代码片段(x,y,z):x.//justacommenty.newPage().read();z.newBook().read();分别插入到第6行,有几个允许代码通过编译并可以运行且无异常?()

考题 现有: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.//justacommentB.protectedHorseRadish(){}C.protectedHorseRadish(){this(42);}D.protectedHorseRadish(){newHorseRadish(42);}

考题 现有:1.classAlpha{voidm1(){}&e 现有:1.classAlpha{voidm1(){}}2.classBetaextendsAlpha{voidm2(){}}3.classGammaextendsBeta{}4.5.classGreekTest{6.publicstaticvoidmain(String[]args){7.Alpha[]a={newAlpha(),newBeta(),newGamma()};8.for(Alphaa2:a){9.a2.m1();10.if(a2instanceofBeta||a2instanceofGamma)11.//insertcodehere12.}13.}14.}哪一行代码插入到第11行,将编译但是会在运行时产生异常?()

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

考题 阅读下面代码 public class Test implements Runnable { public void run(Thread t) { System.out.println("Running"); } public static void main(String[] args) { Thread tt=new Thread(new Test()); tt.start(); } } 代码运行的结果是A.将抛出一个异常B.没有输出并正常结束C.输出“Running”并正常结束D.程序第2行将出现一个编译错误