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

Java异常 Exception类及其子类

时间:2017-11-08 17:27:49      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:mat   format   array   1.5   com   orm   数学   处理   exception   

C语言时用if...else...来控制异常,Java语言所有的异常都可以用一个类来表示,不同类型的异常对应不同的子类异常,每个异常都对应一个异常类的对象。

 Java异常处理通过5个关键字try、catch、finally、throw、throws进行管理。基本过程是用try包住要监视的语句,如果在try内出现异常,则异常会被抛出,catch中捕获抛出的异常并做处理,finally一定会完成未尽事宜。

练习:

package com.swift;

public class Exception1
{
    public static void main(String args[]){
        System.out.println("=========计算开始=========");
        try{
            int i=Integer.parseInt(args[0]);
            int j=Integer.parseInt(args[1]);
            int temp=i/j;
            System.out.println("计算结果:"+ temp);
        }catch(ArithmeticException e){
            System.out.println("出现了数学异常 "+ e);
        }catch(ArrayIndexOutOfBoundsException e){
            System.out.println("出现了数组异常 "+ e);
        }catch(NumberFormatException e){
            System.out.println("出现了格式异常 "+ e);
        }catch(Exception e){
            System.out.println("其他异常 "+e);
        }finally{
            System.out.println("不管是否有异常,我都执行。");
        }
        System.out.println("=========计算结束=========");
    }
}

 

Java异常 Exception类及其子类

标签:mat   format   array   1.5   com   orm   数学   处理   exception   

原文地址:http://www.cnblogs.com/qingyundian/p/7804526.html

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