在Java程式設計中,如何停止執行緒?
以下範例演示了如何通過建立一個使用者定義的方法run()
方法和Timer
類來停止執行緒。
package com.yiibai;
import java.util.Timer;
import java.util.TimerTask;
class CanStop extends Thread {
private volatile boolean stop = false;
private int counter = 0;
public void run() {
while (!stop && counter < 10000) {
//System.out.println(counter++);
}
if (stop){
System.out.println("Detected stop");
}
}
public void requestStop() {
stop = true;
}
}
public class StoppingThread {
public static void main(String[] args) {
final CanStop stoppable = new CanStop();
stoppable.start();
new Timer(true).schedule(new TimerTask() {
public void run() {
System.out.println("Requesting stop");
stoppable.requestStop();
}
}, 350);
}
}
上述程式碼範例將產生以下結果 -
Requesting stop
Detected stop