說明
1、死鎖是指兩個或兩個以上的過程在實施過程中,由於競爭資源或相互通信而造成的堵塞現象,如果沒有外力作用,就不能推進。
執行緒池死鎖實例
2、解決方法:擴大執行緒池執行緒或任務結果不再互相依賴。
final ExecutorService executorService = Executors.newSingleThreadExecutor(); Future<Long> f1 = executorService.submit(new Callable<Long>() { public Long call() throws Exception { System.out.println("start f1"); Thread.sleep(1000);//延时 Future<Long> f2 = executorService.submit(new Callable<Long>() { public Long call() throws Exception { System.out.println("start f2"); return -1L; } }); System.out.println("result" + f2.get()); System.out.println("end f1"); return -1L; } });
以上是如何處理Java執行緒池中的死鎖?的詳細內容。更多資訊請關注PHP中文網其他相關文章!