在Java中,有几种常见的方法可以停止线程的运行:
class MyThread extends Thread {
private volatile boolean flag = true;
public void stopThread() {
flag = false;
}
@Override
public void run() {
while (flag) {
// 线程运行的代码
}
}
}
class MyThread extends Thread {
@Override
public void run() {
while (!Thread.currentThread().isInterrupted()) {
// 线程运行的代码
if (Thread.currentThread().isInterrupted()) {
break;
}
}
}
}
Thread thread = new Thread();
thread.stop();
总结起来,推荐使用标志变量或者interrupt()方法来停止线程的运行,而不推荐使用stop()方法。