1. Verwenden Sie Interrupt, um
while (!Thread.currentThread().isInterrupted() && more work to do) { do more work }
zu benachrichtigen. Verwenden Sie zunächst Thread.currentThread().isInterrupt(), um festzustellen, ob der Thread unterbrochen wurde, und prüfen Sie dann, ob noch Arbeit zu erledigen ist.
public class StopThread implements Runnable { @Override public void run() { int count = 0; while (!Thread.currentThread().isInterrupted() && count < 1000) { System.out.println("count = " + count++); } } public static void main(String[] args) throws InterruptedException { Thread thread = new Thread(new StopThread()); thread.start(); Thread.sleep(5); thread.interrupt(); } }
2. Verwenden Sie volatile, um ein Feld zu markieren und den Thread zu verlassen, indem Sie beurteilen, ob das Feld wahr/falsch ist
/** * 描述: 演示用volatile的局限:part1 看似可行 */ public class WrongWayVolatile implements Runnable { private volatile boolean canceled = false; @Override public void run() { int num = 0; try { while (num <= 100000 && !canceled) { if (num % 100 == 0) { System.out.println(num + "是100的倍数。"); } num++; Thread.sleep(1); } } catch (InterruptedException e) { e.printStackTrace(); } } public static void main(String[] args) throws InterruptedException { WrongWayVolatile r = new WrongWayVolatile(); Thread thread = new Thread(r); thread.start(); Thread.sleep(5000); r.canceled = true; } }
Das obige ist der detaillierte Inhalt vonSo stoppen Sie einen Thread in Java. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!