A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 张狮子 中级黑马   /  2016-4-30 16:23  /  344 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

/*
finally代码块:定义一定执行的代码。
通常用于关闭资源。
*/

class FuShuException extends Exception{//定义一个异常

        FuShuException(String msg){
       
                super(msg);
        }
}

class Demo{

        int div(int a,int b)throws FuShuException{
       
                if(b<0)
                        throw new FuShuException("除数为负数");
                return  a/b;
        }
}

class ExceptionDemo5 {

        public static void main(String[] args) {
       
                Demo d = new Demo();

                try{
               
                        int x = d.div(4,-1);
                        System.out.println("x="+x);
                }
                catch (FuShuException e){
               
                        System.out.println(e.toString());
                        return;
                }
                finally{
                        System.out.println("finally");//finally中存放的是一定会执行的代码。
                }
               
                System.out.println("over");
        }
        class NoException extends Exception{
       
        }
        public void method()throws NoException{
       
                连接数据库;
                数据操作;//throw new SQLException();
                关闭数据库;//该动作,无论数据操作时否成功,一定要关闭资源。

                try{
                       
                连接数据库;
                数据操作;//throw new SQLException();

                }
                catch (SQLException e){
               
                        会对数据库进行异常处理;
                        throw new NoException();

                }
                finally{
               
                        关闭数据库;
                }
        }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马