搜尋

首頁  >  問答  >  主體

菜鸟关于Java中抛出异常和上抛异常的问题

本人最近在学Java,学到线程和异常处理
尝试将两个知识合并起来写段代码,调试遇到问题,搞不懂
某某知道提问基本没人理,所以才把这个这么简单的问题提到这里
请不吝赐教,谢谢!

class Test22_05 implements Runnable{

    public void run() {
        for(int i = 0; i < 10; i++){
            this.excepTest(i);
            System.out.println(Thread.currentThread().getName() + ":i = " + i);
        }
    }

    public void excepTest(int i)throws Exception{
        if(i == 8){
                throw new Exception("这是手动抛出异常!");
            }
    }
}

public class JavaTest22_05{
    public static void main(String args[]){
        Test22_05 t1 = new Test22_05();
        Thread tt1 = new Thread(t1);
        Thread tt2 = new Thread(t1);
        Thread tt3 = new Thread(t1);
        tt1.setName("线程1");
        tt2.setName("线程2");
        tt3.setName("线程3");
        try{
            tt1.start();
            tt2.start();
            tt3.start();
        }catch(Exception e){
            System.out.println(e);
        }
    }
}



阿神阿神2767 天前415

全部回覆(4)我來回復

  • 阿神

    阿神2017-04-17 14:29:39

    找到問題了,我在excepTest方法中拋出異常,然後該方法上拋了異常

    該異常被拋給了run方法,應該在run方法內處理該問題

    但是程式碼中的尋找擷取卻在main方法中,肯定捕獲不到異常

    修正後代碼:

    class Test22_05 implements Runnable{
    
        public void run() {
            for(int i = 0; i < 10; i++){
                try{
                    this.excepTest(i);
                }catch(Exception e){
                    System.out.println(Thread.currentThread().getName() + "出现异常:" + e);
                }
                System.out.println(Thread.currentThread().getName() + ":i = " + i);
            }
        }
    
        public void excepTest(int i)throws Exception{
            if(i == 8){
                    throw new Exception("这是手动抛出异常!");
                }
        }
    }
    
    public class JavaTest22_05{
        public static void main(String args[]){
            Test22_05 t1 = new Test22_05();
            Thread tt1 = new Thread(t1);
            Thread tt2 = new Thread(t1);
            Thread tt3 = new Thread(t1);
            tt1.setName("线程1");
            tt2.setName("线程2");
            tt3.setName("线程3");
                tt1.start();
                tt2.start();
                tt3.start();
                tt1.start(); //本行将报错,因为线程只能启动一次
        }
    }
    
    //本例中是将上抛异常和捕获异常写到多线程代码里面
    //目的是实现当i为8时手动抛出异常
    //基本上实现了,但是不知道为什么,三个线程处理了30条记录,不符合Runnable接口的共享资源特征
    //将在JavaTest22_06.java中重写程序,试图找出问题。
    
    
    
    

    回覆
    0
  • 黄舟

    黄舟2017-04-17 14:29:39

    別的線程是不能直接拋出異常出去的,你想想線程本身就是異步的,你執行線程的時候,主線程的方法早就跑完了

    回覆
    0
  • PHPz

    PHPz2017-04-17 14:29:39

    你要是用IDE工具的話 一準提示你 this.excepTest(i); Unhandled exception type Exception

    回覆
    0
  • 怪我咯

    怪我咯2017-04-17 14:29:39

    沒看明白你想問什麼。 。 。

    回覆
    0
  • 取消回覆