在Java中,可以通過設(shè)置一個標(biāo)志位來通知線程停止。以下是一種優(yōu)雅地停止多線程的方法:
下面是一個示例代碼:
public class MyThread extends Thread {
private volatile boolean stop = false;
@Override
public void run() {
while (!stop) {
// 線程執(zhí)行的邏輯
}
}
public void stopThread() {
stop = true;
}
public static void main(String[] args) {
MyThread thread = new MyThread();
thread.start();
// 在需要停止線程的地方
thread.stopThread();
}
}
在上面的示例中,通過設(shè)置一個標(biāo)志位變量stop來控制線程的執(zhí)行,當(dāng)stop為true時,線程會停止執(zhí)行。在需要停止線程的地方調(diào)用stopThread()方法就可以優(yōu)雅地停止線程的執(zhí)行。