Java 多线程例子10 控制线程的生命 stop

在Thread类中stop已经不推荐大家使用了,因为使用stop停止的线程不安全,它并不会释放被该线程锁定的对象的锁旗标,这样其它线程如果也想要得到该对象的锁旗标就永远得不到了,形成死锁了。

利用标志位控制线程的生命周期:

public class ThreadDemo {
	public static void main(String[] args) {
		ThreadTest t = new ThreadTest();
		t.start();
		try{Thread.sleep(1);}catch(Exception e){};
		for(int i=0; i<100; i++) {
			System.out.println("main"
					+ " is running.");
			if(i==50)
				t.stopMe();
		}
	}
}
class ThreadTest extends Thread {
	private boolean bStop = false;
	public void stopMe() {
		this.bStop = true;
	}
	public void run() {
		while(!bStop) {
			System.out.println(Thread.currentThread().getName() 
					+ " is running.");
		}
	}
}

 

你可能感兴趣的:(java,多线程,thread)