在 Java 中有以下 3种方法可以终止正在运行的线程:
1、使用退出标志,使线程正常退出,也就是当 run()方法完成后线程终止。
2、使用 stop()方法强行终止,但是不推荐这个方法,因为 stop() 和 suspend() 及resume() 一样都是过期作废的方法。
3、使用 interrupt() 方法中断线程。

Was this helpful?

0 / 0

发表回复 0

Your email address will not be published.