本人最近在学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);
}
}
}
找到問題了,我在excepTest方法中拋出異常,然後該方法上拋了異常
該異常被拋給了run方法,應該在run方法內處理該問題
但是程式碼中的尋找擷取卻在main方法中,肯定捕獲不到異常
修正後代碼:
別的線程是不能直接拋出異常出去的,你想想線程本身就是異步的,你執行線程的時候,主線程的方法早就跑完了
你要是用IDE工具的話 一準提示你 this.excepTest(i); Unhandled exception type Exception
沒看明白你想問什麼。 。 。