现有: 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行
现有: 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行
相关考题:
下列语句中,输出与众不同的是A.cout<<" 1. "<<setfill(' ') <<" Hello ! "<<end1B.cout<<"1. "<<"<"Hello!"\n";C.cout<<"1. Hello!"<<end1;D.cout<<'1. "<<setw(7)<<"Hello! ";
将1. 234 56和12 345 678分别化为5位有效数字,正确的结果是()。A. 1.234 5,1. 234 6X107 B. 1.234 5,1. 234 600 0C. 1.234 6,1. 234 6X107 D. 1.234 6,1. 234 600 0
文中结构层次序数依次可以用()标注。A、“一、”“1.”“(1)”“(一)”B、“一、”“(一)”“1.”“(1)”C、“(一)”“一、”“1.”“(1)”D、“1.”“(1)”“(一)”“一、”
以下哪一项是发现有气体泄漏时的安全做法?A、1.将电话/传呼机关掉2.须弄熄所有明火3.切勿开关任何电器设备B、1.切勿按动门铃或使用电话2.绝对不可吸烟,同时禁止以明火找寻漏气来源3.只可使用防爆电筒照明,切勿使用明火或其它照明设备C、以上两项皆是
写出分属于下列科的校园植物。 李亚科1.()2.()3.() 苹果亚科1.()2.()3.() 绣线菊亚科1.()2.() 蔷薇亚科() 十字花科1.()2.() 藜科1.()2.() 蓼科() 堇菜科() 卫矛科() 蝶形花科1.()2.()3.()
以下语句中,输出结果与众不同的一个是()A、cout<<"1. "<<setfill(’ ’)<< "Hello! "<<endl;B、cout<<"1."<<’ ’ <<"Hello! /n";C、cout<<"1. Hello! "<<endl;D、cout<<"1. "<<setw(7)<< "Hello! ";
填空题根据各项耕作措施对土壤影响的大小及消耗动力的多少,土壤耕作措施可归纳为基本耕作和表土耕作。根据现有机具性能,其基本耕作措施有1.()2.()3.();三种。表土耕作包括1.浅耕灭茬2.耙地3.镇压4.中耕等作业。
多选题现有2 个文件: 1. package x; 2. public class X { 3. public static void doX() { System.out.print("doX "); } 4. } 和: 1. class Find { 2. public static void main(String [] args) { 3. //insert code here 4. } 5. } 哪两行分别插入到类Find 的第3 行将编译并产生输出“doX”? ()AdoX();BX.doX();Cx.X.doX();Dx.X myX = new x.X(); myX.doX();
单选题文中结构层次序数依次可以用()标注。A“一、”“1.”“(1)”“(一)”B“一、”“(一)”“1.”“(1)”C“(一)”“一、”“1.”“(1)”D“1.”“(1)”“(一)”“一、”
单选题现有: 1. interface Altitude { 2. //insert code here 3. } 和4个声明: int HIGH = 7; public int HIGH = 7; abstract int HIGH = 7; interface int HIGH = 7; 分别插入到第2行,有多少行可以编译?()A 0B 1C 2D 3E 4
单选题A 1. 44B 1. 54C 1. 64D 1. 74