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

java:异常处理

时间:2014-05-26 23:44:34      阅读:323      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   blog   code   java   

异常:编译正常,但运行出错,会中断正常指令流

RuntimeException:运行时异常

分为:uncheck exception、和check exception(除了RuntimeException以及子类以外的)

uncheck exception

bubuko.com,布布扣
class Test
{
    public static void main(String args[]){
        System.out.println("1");
        int i = 1/0;
        System.out.println("2");
    }
}
bubuko.com,布布扣

bubuko.com,布布扣

异常处理:uncheck exception,try里面出异常,就跳到catch里面执行

try{..}

catch(){..}

finally{..}

bubuko.com,布布扣
class Test
{
    public static void main(String args[]){
        try{
            int i = 1/0;
        }catch(Exception e){
            //出异常执行这里
            e.printStackTrace();
            System.out.println("2");
        }finally{
            //不管出不出异常都执行这里
            System.out.println("3");
        }
    }
}
bubuko.com,布布扣

throw抛出异常对象:

bubuko.com,布布扣
class User
{
    void setage(int age){
        if(age<0){
            RuntimeException r = new RuntimeException("年龄不为负");
            throw r;
        }
        System.out.println("函数末");
    }
}
bubuko.com,布布扣
bubuko.com,布布扣
class Test
{
    public static void main(String args[]){
        User u = new User();
        u.setage(-3);
    }
}
bubuko.com,布布扣

bubuko.com,布布扣

throws声明一个函数有可能产生异常,调用的时候再处理异常

bubuko.com,布布扣
class User
{
    void setage(int age) throws Exception{
        if(age<0){
        Exception e = new Exception("年龄不为负");
        throw e;
        }
    }
}
bubuko.com,布布扣
bubuko.com,布布扣
class Test
{
    public static void main(String args[]){
        User u = new User();
        try{
        u.setage(-3);
        }catch(Exception e){
            System.out.println(e);
        }
    }
}
bubuko.com,布布扣

java:异常处理,布布扣,bubuko.com

java:异常处理

标签:style   c   class   blog   code   java   

原文地址:http://www.cnblogs.com/tinyphp/p/3740820.html

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