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

java学习——异常处理机制

时间:2018-11-12 17:51:29      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:++   inf   图片   处理机   bubuko   system   pre   com   学习   

 

public class ExceptionDemo2 {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        
        int i=0;
        int a[]={1,2,3,4};
        for( i = 0; i<5; i++)
        {
            try
            {
                System.out.print("a[" + i + "]/"+ "=" + (a[i]/i));
            }
            catch(ArrayIndexOutOfBoundsException e)
            {
                System.out.print("捕获数组下标越界");
            }
            catch(ArithmeticException e)
            {
                System.out.print("捕获算术异常");
            }
            finally
            {
                System.out.print("finally i=" + i);
            }
            System.out.println("继续!");
        }

    }

}

技术分享图片

 

java学习——异常处理机制

标签:++   inf   图片   处理机   bubuko   system   pre   com   学习   

原文地址:https://www.cnblogs.com/caiyishuai/p/9947055.html

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