| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 369 人关注过本帖
标题:异常处理
只看楼主 加入收藏
yu1543054075
Rank: 1
等 级:新手上路
帖 子:102
专家分:8
注 册:2015-4-30
结帖率:90.24%
收藏
已结贴  问题点数:5 回复次数:3 
异常处理
public class CatchWho2 {
    public static void main(String[] args) {
        try{
            try {
                throw new ArrayIndexOutOfBoundsException();
            }
            catch(ArithmeticException e) {
                System.out.println(
                  "ArrayIndexOutOfBoundsException" +
                  "/内层 try...catch");
                }
                throw new ArithmeticException();
            }
            catch(ArithmeticException e) {
                System.out.println("发生ArithmeticException");
            }
            catch(ArrayIndexOutOfBoundsException e) {
                System.out.println(
                   "ArrayIndexOutOfBoundsException" +
                   "/外层 try...catch");
                 }
                }
            }
结果显示为:
ArrayIndexOutOfBoundsException/外层 try...catch
为什么没有显示“发生ArithmeticException”
搜索更多相关主题的帖子: public 
2015-06-03 20:37
林月儿
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:湖南
等 级:版主
威 望:138
帖 子:2277
专家分:10647
注 册:2015-3-19
收藏
得分:5 
程序代码:
public class CatchWho2 {
    public static void main(String[] args) {
        try{
            System.out.println(1/0);
            try {
                throw new ArrayIndexOutOfBoundsException();
            }
            catch(ArithmeticException e) {
                System.out.println(
                  "ArrayIndexOutOfBoundsException" +
                  "/内层 try...catch");
                }
                throw new ArithmeticException();
            }
            catch(ArithmeticException e) {
                System.out.println("发生ArithmeticException");
            }
            catch(ArrayIndexOutOfBoundsException e) {
                System.out.println(
                   "ArrayIndexOutOfBoundsException" +
                   "/外层 try...catch");
                 }
                }
            }

剑栈风樯各苦辛,别时冰雪到时春
2015-06-03 21:15
yu1543054075
Rank: 1
等 级:新手上路
帖 子:102
专家分:8
注 册:2015-4-30
收藏
得分:0 
版主能够给我讲解一下吗?我的程序为什么没有显示“发生ArithmeticException”, throw new ArithmeticException();这里扔出的异常不是应该被下面的 catch(ArithmeticException e)所捕捉么?
还有为什么你添加了一个 System.out.println(1/0);就行了呢
2015-06-04 14:22
林月儿
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:湖南
等 级:版主
威 望:138
帖 子:2277
专家分:10647
注 册:2015-3-19
收藏
得分:0 
因为加了就会发生 ArithmeticException异常啊,这里的分支相当于instanceof判断,遇到合适的异常情况执行合适的分支处理

剑栈风樯各苦辛,别时冰雪到时春
2015-06-04 17:31
快速回复:异常处理
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.063853 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved