91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

詳解Java中多線程異常捕獲Runnable的實現

發布時間:2020-09-19 00:36:09 來源:腳本之家 閱讀:326 作者:_QING_FENG 欄目:編程語言

詳解Java中多線程異常捕獲Runnable的實現

1、背景:

        Java 多線程異常不向主線程拋,自己處理,外部捕獲不了異常。所以要實現主線程對子線程異常的捕獲。
2、工具:

        實現Runnable接口的LayerInitTask類,ThreadException類,線程安全的Vector
3、思路:

       向LayerInitTask中傳入Vector,記錄異常情況,外部遍歷,判斷,拋出異常。

4、代碼:     

package step5.exception; 
 
import java.util.Vector; 
import java.util.concurrent.ExecutorService; 
import java.util.concurrent.Executors; 
import java.util.concurrent.TimeUnit; 
 
import com.autonavi.pds.core.incre.impl.LayerInitTask; 
 
public class ThreadException { 
 
  public static void main(String[] args) { 
    try { 
      Vector<String> errRet = new Vector(); 
      ExecutorService pool = Executors.newFixedThreadPool(6); 
      for (int i = 0; i < 6; ++i) { 
        pool.execute(new LayerInitTask(i, errRet)); 
      } 
      pool.shutdown(); 
      pool.awaitTermination(1, TimeUnit.DAYS); 
       
      if (errRet.size() > 0) { 
        System.out.println("根據返回值捕獲:exception"); 
        throw new RuntimeException( "入庫失敗!"); 
      } 
       
    } catch (Exception e) { 
      System.out.println("根據拋出異常捕獲:exception"); 
      throw new RuntimeException( "入庫失敗!"); 
    } 
    System.out.println("-----入庫成功,發成功完成工作郵件--------"); 
  } 
 
} 
package step5.exception; 
 
import java.util.Vector; 
 
public class LayerInitTask implements Runnable { 
  private int threadNum; 
  private Vector<String> errRet; 
 
  public LayerInitTask(int num, Vector<String> errRet) { 
    this.threadNum = num; 
    this.errRet = errRet; 
  } 
 
  @Override 
  public void run() { 
    try { 
      if (this.threadNum == 3) { 
        throw new RuntimeException( this.threadNum + ":數據格式有誤."); 
      } 
      System.out.println(this.threadNum + ":刷表成功"); 
    } catch (Exception e) { 
      this.errRet.add("線程:" + this.threadNum + "運行異常!"); 
      throw new RuntimeException( this.threadNum + ":刷表失敗"); 
    } 
  } 
 
} 

5、結果:

Exception in thread "pool-1-thread-4" java.lang.RuntimeException: 3:刷表失敗 
  at step5.exception.LayerInitTask.run(LayerInitTask.java:23) 
  at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) 
  at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) 
  at java.lang.Thread.run(Unknown Source) 
Exception in thread "main" java.lang.RuntimeException: 入庫失敗! 
  at step5.exception.ThreadException.main(ThreadException.java:27) 
2:刷表成功 
1:刷表成功 
5:刷表成功 
0:刷表成功 
4:刷表成功 
根據返回值捕獲:exception 
根據拋出異常捕獲:exception 

如有疑問請留言或者到本站社區交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

京山县| 东兴市| 年辖:市辖区| 台安县| 翁源县| 安平县| 通榆县| 田阳县| 富锦市| 永寿县| 嘉兴市| 鄂托克前旗| 垣曲县| 腾冲县| 兴宁市| 丹东市| 南木林县| 德化县| 大埔区| 安仁县| 探索| 大田县| 九龙县| 历史| 定远县| 乐昌市| 隆德县| 河西区| 赣榆县| 龙口市| 通城县| 永州市| 信宜市| 阳新县| 建始县| 安远县| 临江市| 卢湾区| 赤峰市| 芒康县| 巴东县|