1. Utilisez Interrupt pour avertir
while (!Thread.currentThread().isInterrupted() && more work to do) { do more work }
Tout d'abord, utilisez Thread.currentThread().isInterrupt() pour déterminer si le fil a été interrompu, puis vérifiez s'il y a encore du travail à faire.
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. Utilisez volatile pour marquer un champ et quitter le fil de discussion en jugeant si le champ est vrai/faux
/** * 描述: 演示用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; } }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!