要為執行緒建立時間限制,請考慮使用 ExecutorService 而不是 Timer。 ExecutorService 提供了一種靈活的解決方案,用於控制線程在指定時間內執行。
這是使用 ExecutorService 的精煉程式碼片段:
import java.util.concurrent.*; public class ThreadTimeout { public static void main(String[] args) throws Exception { ExecutorService executor = Executors.newSingleThreadExecutor(); Future<String> future = executor.submit(new Task()); try { System.out.println("Started.."); System.out.println(future.get(3, TimeUnit.SECONDS)); System.out.println("Finished!"); } catch (TimeoutException e) { future.cancel(true); System.out.println("Terminated!"); } executor.shutdownNow(); } static class Task implements Callable<String> { @Override public String call() throws Exception { // Your long-running task should go here. return "Ready!"; } } }
透過利用 Future#get(),您可以建立一個任務逾時。如果任務在該時間內完成,則會如預期檢索結果。但是,如果未能在指定時間內完成,則會執行 catch 區塊,從而允許您取消任務。
關於 sleep() 用法的說明
所提供的範例中包含 sleep() 僅用於演示目的。它旨在模擬 SSCCE 中長時間運行的任務。在您的實際場景中,將 sleep() 替換為您想要的長時間運行的任務。
為了避免潛在的死鎖,定期檢查長時間運行的任務中您的線程是否已被中斷至關重要,如以下程式碼片段:
while (!Thread.interrupted()) { // Perform your long-running task here. }
這種有條不紊的方法將確保您的線程及時回應中斷請求並在超時時優雅地終止。
以上是Java中如何精確地使執行緒逾時?的詳細內容。更多資訊請關注PHP中文網其他相關文章!