首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
请阅读下列程序代码,然后将程序的执行结果补充完整。 程序代码: public class throwsException{ static void Proc(int sel) throws ArithmeticException,ArrayIndexOut
请阅读下列程序代码,然后将程序的执行结果补充完整。 程序代码: public class throwsException{ static void Proc(int sel) throws ArithmeticException,ArrayIndexOut
admin
2010-12-17
58
问题
请阅读下列程序代码,然后将程序的执行结果补充完整。
程序代码:
public class throwsException{
static void Proc(int sel)
throws ArithmeticException,ArrayIndexOutOfBoundsException{
System.out. println("In Situation"+sel);
if(sel==0){
System.out.println("no Exception caught");
return;
}
else if(sel==1){
int iArray[]=new int[4];
iArray[1]=3;
}
}
public static void main(String args[]){
try{
Proc(0);
Proc(1);
}
catch(ArrayIndexOutOfBoundsException e){
System.out.println("Catch"+e);
}
finally{
System.out.println("in Proc finally");
}
}
}
执行结果:
In Situation 0
no Exception caught
______
in Proc finally
选项
答案
In Situationl
解析
本题考查考生阅读Java程序的能力。题目程序看似复杂,但流程非常简单。程序的public类是throwsException,类中定义了Proc(int sel)方法。程序入口是main()方法,使用try-catch-finally来捕获ArithmeticException和ArraylndexOutOfBounds-Exception异常,这两个异常是关于算术异常或数组索引越界的异常。执行 Proc(0)时,输出In Situation 0和no Exception caught两条信息;执行Proc(1)时,输出In Situationl和in Proc finally两条信息。整个程序并未发生异常。
转载请注明原文地址:https://kaotiyun.com/show/qg9p777K
本试题收录于:
二级Java题库NCRE全国计算机二级分类
0
二级Java
NCRE全国计算机二级
相关试题推荐
下面描述中错误的是
下列叙述中正确的是
结构化程序设计原则强调的是
下面属于整数类I实例的是
软件(程序)调试的任务是
在数据管理技术发展的三个阶段中,数据共享最好的是
数据库系统的核心是
在面向对象方法中,不属于“对象”基本特点的是
下列关于列表的说法正确的是()。
下列Applet实现键盘事件处理,当一个键按下时,判断是否为26个英文字母,并输出该字母。选择正确的语句填入横线处。importjava.applet.Applet;importjava.awt.*;importj
随机试题
Youcandoitifyouwantto,butinmyopinionit’snotworththe______itinvolves.
下列哪一项对心瓣膜功能的叙述是错误的()
宫颈活检为鳞癌,正确的诊断是患者进行了放疗,下列哪项治疗目的是正确的
离子交换法适宜分离
下列选项中不属于无效合同的特征的是()
会计的基本职能是( )。
古巴比伦王国的文明表现在()。
在窗体上画两个单选按钮,名称分别为Option1和Option2,标题分别为“黑体”和“楷体”;一个复选框,名称为Check1,标题为“粗体”。要求程序运行时,“黑体”单选按钮和“粗体”复选框被选中,则能够实现上述要求的语句序列是()。
Readtheextractbelowfromtheannualreportofacompanywithmanufacturinginterestsaroundtheworld.Choosethebestwo
differ,experience,inform,little,patience,prefer,quality,rely,limit,tame,familiar,violateThoughbountyhuntin
最新回复
(
0
)