首页 > 其他 > 详细

回避异常的处理方式

时间:2017-04-23 14:16:28      阅读:124      评论:0      收藏:0      [点我收藏+]
package zuizhong;

public class Test5 {


    public static void main(String[] args) throws Exception  {
    try {
        int s=divide(100, 0);
    } catch (Exception e) {
    throw e;
    }
        
    }
    
public static    int divide(int a,int b) throws Exception{
            if(b==0){
                Exception e=new Exception("除数不能为零");
                throw e;
            }else return a/b;
        }
}

 

回避异常的处理方式

原文:http://www.cnblogs.com/zyy1130/p/6752385.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!