用java编写一个程序,抛出三种异常

编写一个程序在该程序中抛出下列三种异常:ArithmeticException、ArrayIndexOutOfBoundsException和NullPointerExc... 编写一个程序在该程序中抛出下列三种异常:ArithmeticException、ArrayIndexOutOfBoundsException和NullPointerException,并分别用三个catch语句捕获这三个异常对象,分别输出以下字符串:“算术异常”,“数组下标越界异常”和“空指针异常”。 展开
 我来答
lylegend13
2011-11-24 · TA获得超过4696个赞
知道大有可为答主
回答量:1701
采纳率:0%
帮助的人:1722万
展开全部
你好,按照你的要求代码如下,你运行时,可以选择性的注释,比如要看到第二个异常,就要把第一段会抛出异常的代码注释掉就行了,看第三个异常同理

public class A {
public static void main(String[] args) {
try {
System.out.println(1 / 0);//会抛出ArithmeticException

System.out.println(new int[] {}[0]);//会抛出ArrayIndexOutOfBoundsException

String str = null;
System.out.println(str.toString());//会抛出NullPointerException

} catch (ArithmeticException e) {
System.out.println("算术异常");
} catch (ArrayIndexOutOfBoundsException e) {
System.out.println("数组下标越界异常");
} catch (NullPointerException e) {
System.out.println("空指针异常");
}

}
}
百度网友ca7d5b1
2011-11-24
知道答主
回答量:17
采纳率:0%
帮助的人:10.5万
展开全部
try{
}
catch(ArithmeticException ex){
System.out.println("算术异常");
}
catch(ArrayIndexOutOfBoundsException ex){
System.out.println("数组下标越界异常");

}
catch(NullPointerException ex){
System.out.println("空指针异常");

}
finally{
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lh502101107
2011-11-24 · TA获得超过840个赞
知道小有建树答主
回答量:334
采纳率:100%
帮助的人:198万
展开全部
楼主要的应该是这种效果吧。

public class Test {
public static void main(String[] args) {
int[] a=new int[2];
try{
System.out.println(a[2]+2);
}catch(Exception e){
e.printStackTrace();
Person p = null;
try{
p.add();
}catch(Exception e1 ){
e1.printStackTrace();
}

}
}
class Person{
void add(){}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式