相关考题
-
多项选择题
线程由以下哪些部分组成?()
A.虚拟的CPU
B.CPU执行的代码
C.支持代码工作的数据
D.进程 -
单项选择题
现有 classParserextendsUtils{ publicstaticvoidmain(String[]args){ try{System.out.print(newParser().getlnt("42")) }catch(Exceptione){ System.out.println("Exc");} } intgetlnt(Stringarg)throwsException{ returnInteger.parselnt(arg); } } classUtils{ intgetlnt(){return42;} } 结果是什么?()
A. 42Exc
B. Exc
C. 42
D.编译失败 -
单项选择题
现有: 1. class Propeller2 { 2. pulolic static void main (String[]args)//add code here? 3. { new Propeller2().topGo(); } 4. 5.void topGo() //add code here? 6. { middleGo(); } 7. 8.void middleGo() //add code here? 9. { go(); System.out.println ("late middle"); } void go() //add code here? 12. {throw new Exception(); } 13. } 为使代码通过编译,需要在哪一行加入声明throws Exception?()
A.只在第11行
B.在第8行和第11行
C.在第5行、第8行和第11行
D.在第2行、第5行、第8行和第11行
