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

JAVA异常

时间:2014-09-27 23:23:40      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   java   sp   div   on   

ArithmeticException----->by zero

public class ExceptionDemo1 {
    public static void main(String args[]) {
        System.out.println("********** BEGIN *************");
        int i = 10;
        int j = 0;
        try {
        int temp = i / j;
        System.out.println("result: " + temp);
        System.out.println("**************************");
        } catch(ArithmeticException e) {
            System.out.println("Exception occurs at Info: " + e);
        }
        System.out.println("*********** END ***************");
    }
}

 

JAVA异常

标签:style   blog   color   io   ar   java   sp   div   on   

原文地址:http://www.cnblogs.com/daishuguang/p/3997329.html

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