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

java 第48节 Java中的异常声明

时间:2016-06-30 19:48:49      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

2016-06-30

1 异常声明
一个方法不处理它所产生的异常,而是调用层次向上传递,
谁调用这个方法,谁来处理。

package com.java1995;
/**
 * 异常的声明:throws
 * @author Administrator
 *
 */
public class Test {
    
    public static void main(String[] args) {
        System.out.println("main方法开始执行");
        Test t=new Test();
//        try{
//            t.test1();
//        }catch(ArithmeticException e){
//            System.out.println(e.getMessage());
//        };
        
//        t.test2();
        t.test4();
        
        System.out.println("main方法结束");
    }
    
    public void test1() throws ArithmeticException{
        
        System.out.println("test1()开始执行");
        System.out.println(1/0);
        System.out.println("test1()执行完毕");
    }
    
    public void test2() throws ArithmeticException{
        test1();
    }



    public void test3() throws ArithmeticException{
        test2();
    }
    public void test4(){
        
        try{
            test3();
        }catch(ArithmeticException e){
            System.out.println(e.getMessage());
        }
    }
}

技术分享

 

【参考资料】

[1] Java轻松入门经典教程【完整版】

 

java 第48节 Java中的异常声明

标签:

原文地址:http://www.cnblogs.com/cenliang/p/5630922.html

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