Java终止线程实例和stop()方法源码阅读
了解线程
概念
线程 是程序中的执行线程。java 虚拟机允许应用程序并发地运行多个执行线程。
线程特点
拥有状态,表示线程的状态,同一时刻中,jvm中的某个线程只有一种状态;
·new
尚未启动的线程(程序运行开始至今一次未启动的线程)
·runnable
可运行的线程,正在jvm中运行,但它可能在等待其他资源,如cpu。
·blocked
阻塞的线程,等待某个锁允许它继续运行
·waiting
无限等待(再次运行依赖于让它进入该状态的线程执行某个特定操作)
·timed_waiting
定时等待(再次运行依赖于让它进入该状态的线程在指定等待时间内某个特定操作)
·terminated
已退出的线程
拥有优先级,决定线程的执行顺序;
1至10之间的整数,默认数值为5。数值越高,执行的几率越高,优先级并不能决定线程的执行顺序。
子线程的优先级默认同父线程的一样。
注意,当以下情况发生时,jvm将停止执行所有线程:
runtime(运行时)的exit ()方法被调用并且该方法的调用被security manager所允许;
所有的“非守护线程”都已停止运行(无论时正常停止还是一场停止);
可以被标记为守护程序(daemon)
守护线程的子线程仍是守护线程;
守护线程也就是“后台线程”,一般用来执行后台任务,而用户线程一般用户执行用户级任务。
终止线程的方法
1.使用退出标志,使线程正常退出,也就是当run方法完成后线程终止。
当run方法执行完后,线程就会退出。但有时run方法是永远不会结束的。如在服务端程序中使用线程进行监听客户端请求,或是其他的需要循环处理的任务。在这种情况下,一般是将这些任务放在一个循环中,如while循环。如果想让循环永远运行下去,可以使用while(true){……}来处理。但要想使while循环在某一特定条件下退出,最直接的方法就是设一个boolean类型的标志,并通过设置这个标志为true或false来控制while循环是否退出。下面给出了一个利用退出标志终止线程的例子。
flagexitthread.java
package com.rainmonth; /** * created by randyzhang on 2017/3/23. */ public class flagexitthread extends thread { public volatile boolean isexit = false; public flagexitthread(string name) { super(name); } @override public void run() { while (!isexit) { system.out.println("i'm running"); } } }
democlient.java
package com.rainmonth; /** * created by randyzhang on 2017/3/23. */ public class democlient { public static void main(string[] args) { system.out.println("优雅的终止线程实例"); exitbyflag(); // exitbyinterrupt(); } private static void exitbyflag() { flagexitthread flagexitthread = new flagexitthread(flagexitthread.class.getsimplename()); flagexitthread.start(); try { thread.sleep(1000); flagexitthread.isexit = true; flagexitthread.join(); system.out.println("线程退出"); } catch (interruptedexception e) { e.printstacktrace(); } } private static void exitbyinterrupt() { flagexitthread flagexitthread = new flagexitthread(flagexitthread.class.getsimplename()); system.out.println("flagexitthread running..."); flagexitthread.start(); try { thread.sleep(1500); system.out.println("flagexitthread interrupted..."); flagexitthread.interrupt(); thread.sleep(1500); system.out.println("stop application..."); } catch (interruptedexception e) { e.printstacktrace(); } } }
输出结果:
打印了一大堆i'm running之后线程退出。
2.使用stop方法强行终止线程(这个方法不推荐使用,因为stop和suspend、resume一样,也可能发生不可预料的结果)。
显示调用stop()方法。源码中关于stop() 的描述如下:
/* * this method is inherently unsafe. stopping a thread with * thread.stop causes it to unlock all of the monitors that it * has locked (as a natural consequence of the unchecked * <code>threaddeath</code> exception propagating up the stack). if * any of the objects previously protected by these monitors were in * an inconsistent state, the damaged objects become visible to * other threads, potentially resulting in arbitrary behavior. many * uses of <code>stop</code> should be replaced by code that simply * modifies some variable to indicate that the target thread should * stop running. the target thread should check this variable * regularly, and return from its run method in an orderly fashion * if the variable indicates that it is to stop running. if the * target thread waits for long periods (on a condition variable, * for example), the <code>interrupt</code> method should be used to * interrupt the wait. */
大意就是说,该方法的不安全性时固有的。调用stop()终止一个线程会释放它已经锁定的所有监视器(这将导致沿堆栈向上传播为检查的threaddeath异常被抛出),若此时之前受这些被释放的监视器保护的对象存在不一致性,并且这些对象对其他线程可见,这就会导致一些意想不到的后果。stop操作应该有哪些仅仅只需要修改某些代码就可以指示目标线程应该停止运行的代码来取代(方法一就是这种方式)。如果目标线程由于等待某一条件(如某个条件变量)等待很长时间,我们应该使用interrupt方法来中断该等待(方法三就是这种方式)。
3.使用interrupt方法中断线程。
interrupt字面上是终止的意思,但不要试图通过调用interrupt来终止线程,因为有时即使你调用了该方法,线程仍然会继续执行,可以注释掉上面的exitbyflag(),开启exitbyinterrupt() 方法,发现及时调用了interrupt()方法,仍在一直输出i'm running…(不同系统及cpu结果可能有所不同),可见采用interrupt方式也是不安全的。
总结
根据以上的分析,最值得推荐的方式是第一种,我们可以用共享变量(shared variable)的方式来设置标志,并发出信号,通知线程必须终止。当然对这个共享变量的操作我们必须保证是同步的。
以上就是本文关于java终止线程实例和stop()方法源码阅读的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!