码迷,mamicode.com
首页 > 编程语言 > 详细

java异常使用

时间:2020-07-16 21:22:34      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:java   pre   new   logger   try   location   技术   ati   ima   

一、try-catch-finaly处理

//当场捕捉处理处理异常
public void testTryCatch(){
       try {
           logger.info("1/0={}",1/0);
       }catch (ArithmeticException  e){
           logger.info("捕捉异常{}",e.getMessage());
       }catch (Exception e){
           logger.info("捕捉异常{}",e.getMessage());
       }finally{
           logger.info("方法结束");
       }
    }
//
  static private void test(){
        UserExceptionTest e = new UserExceptionTest();
        e.testTryCatch();
    }

技术图片

二、使用throw抛出异常,外层调用处理该异常

//自定义异常
public class UserException extends Exception{
    private String msg;
    private String location;
    public String getMsg() {
        return msg;
    }
    public void setMsg(String msg) {
        this.msg = msg;
    }

    public String getLocation() {
        return location;
    }

    public void setLocation(String location) {
        this.location = location;
    }
}
//抛出异常
 public void testThrowsExp() throws UserException {
        int m = 0;
        if(m==0){
            UserException e=new UserException();
            e.setLocation(e.getClass().getName());
            e.setMsg("除数不能为0!");
            throw e;
        }else{
            logger.info("1/m={}",1/m);
        }
    }
//捕捉异常并处理
 static private void test1(){
        try{
            UserExceptionTest e = new UserExceptionTest();
            e.testThrowsExp();
        }catch (UserException e){
            logger.info("捕捉异常{}:{}",e.getMsg());
            logger.info("异常:{}",e.getLocation());
        }finally {
            logger.info("方法结束");
        }
    }

技术图片

java异常使用

标签:java   pre   new   logger   try   location   技术   ati   ima   

原文地址:https://www.cnblogs.com/jinit/p/13323871.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!