多线程基础体系知识清单
前言
本文会介绍java中多线程与并发的基础,适合初学者食用。
线程与进程的区别
在计算机发展初期,每台计算机是串行地执行任务的,如果碰上需要io的地方,还需要等待长时间的用户io,后来经过一段时间有了批处理计算机,其可以批量串行地处理用户指令,但本质还是串行,还是不能并发执行。
如何解决并发执行的问题呢?于是引入了进程的概念,每个进程独占一份内存空间,进程是内存分配的最小单位,相互间运行互不干扰且可以相互切换,现在我们所看到的多个进程“同时"在运行,实际上是进程高速切换的效果。
那么有了线程之后,我们的计算机系统看似已经很完美了,为什么还要进入线程呢?如果一个进程有多个子任务,往往一个进程需要逐个去执行这些子任务,但往往这些子任务是不相互依赖的,可以并发执行,所以需要cpu进行更细粒度的切换。所以就引入了线程的概念,线程隶属于某一个进程,它共享进程的内存资源,相互间切换更快速。
进程与线程的区别:
-
进程是资源分配的最小单位,线程是cpu调度的最小单位。所有与进程相关的资源,均被记录在pcb中。
-
线程隶属于某一个进程,共享所属进程的资源。线程只由堆栈寄存器、程序计数器和tcb构成。
-
进程可以看作独立的应用,线程不能看作独立的应用。
-
进程有独立的地址空间,相互不影响,而线程只是进程的不同执行路径,如果线程挂了,进程也就挂了。所以多进程的程序比多线程程序健壮,但是切换消耗资源多。
java中进程与线程的关系:
-
运行一个程序会产生一个进程,进程至少包含一个线程。
-
每个进程对应一个jvm实例,多个线程共享jvm中的堆。
-
java采用单线程编程模型,程序会自动创建主线程 。
-
主线程可以创建子线程,原则上要后于子线程完成执行。
线程的start方法和run方法的区别
区别
java中创建线程的方式有两种,不管使用继承thread的方式还是实现runnable接口的方式,都需要重写run方法。调用start方法会创建一个新的线程并启动,run方法只是启动线程后的回调函数,如果调用run方法,那么执行run方法的线程不会是新创建的线程,而如果使用start方法,那么执行run方法的线程就是我们刚刚启动的那个线程。
程序验证
public class main { public static void main(string[] args) { thread thread = new thread(new subthread()); thread.run(); thread.start(); } } class subthread implements runnable{ @override public void run() { // todo auto-generated method stub system.out.println("执行本方法的线程:"+thread.currentthread().getname()); } }
thread和runnable的关系
thread源码
runnable源码
区别
通过上述源码图,不难看出,thread是一个类,而runnable是一个接口,runnable接口中只有一个没有实现的run方法,可以得知,runnable并不能独立开启一个线程,而是依赖thread类去创建线程,执行自己的run方法,去执行相应的业务逻辑,才能让这个类具备多线程的特性。
使用继承thread方式和实现runable接口方式分别创建子线程
使用继承thread类方式创建子线程
public class main extends thread{ public static void main(string[] args) { main main = new main(); main.start(); } @override public void run() { system.out.println("通过继承thread接口方式创建子线程成功,当前线程名:"+thread.currentthread().getname()); } }
运行结果:
使用实现runnable接口方式创建子线程
public class main{ public static void main(string[] args) { subthread subthread = new subthread(); thread thread = new thread(subthread); thread.start(); } } class subthread implements runnable{ @override public void run() { // todo auto-generated method stub system.out.println("通过实现runnable接口创建子线程成功,当前线程名:"+thread.currentthread().getname()); } }
运行结果:
使用匿名内部类方式创建子线程
public class main{ public static void main(string[] args) { thread thread = new thread(new runnable() { @override public void run() { // todo auto-generated method stub system.out.println("使用匿名内部类方式创建线程成功,当前线程名:"+thread.currentthread().getname()); } }); thread.start(); } }
运行结果:
关系
-
thread是实现了runnable接口的类,使得run支持多线程。
-
因类的单一继承原则,推荐使用runnable接口,可以使程序更加灵活。
如何实现处理多线程的返回值
通过刚才的学习,我们知道多线程的逻辑需要放到run方法中去执行,而run方法是没有返回值的,那么遇到需要返回值的状况就不好解决,那么如何实现子线程返回值呢?
主线程等待法
通过让主线程等待,直到子线程运行完毕为止。
实现方式:
public class main{ static string str; public static void main(string[] args) { thread thread = new thread(new runnable() { @override public void run() { str="子线程执行完毕"; } }); thread.start(); //如果子线程还未对str进行赋值,则一直轮转 while(str==null) {} system.out.println(str); } }
使用thread中的join()方法
join()方法可以阻塞当前线程以等待子线程处理完毕。
实现方式:
public class main{ static string str; public static void main(string[] args) { thread thread = new thread(new runnable() { @override public void run() { str="子线程执行完毕"; } }); thread.start(); //如果子线程还未对str进行赋值,则一直轮转 try { thread.join(); } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } system.out.println(str); } }
join方法能做到比主线程等待法更精准的控制,但是join方法的控制粒度并不够细。比如,我需要控制子线程将字符串赋一个特定的值时,再执行主线程,这种操作join方法是没有办法做到的。
通过callable接口实现:通过futuretask或者线程池获取
在jdk1.5之前,线程是没有返回值的,通常程序猿需要获取子线程返回值颇费周折,现在java有了自己的返回值线程,即实现了callable接口的线程,执行了实现callable接口的线程之后,可以获得一个future对象,在该对象上调用一个get方法,就可以执行子线程的逻辑并获取返回的object。
实现方式1(错误示例):
public class main implements callable<string>{ @override public string call() throws exception { // todo auto-generated method stub string str = "我是带返回值的子线程"; return str; } public static void main(string[] args) { main main = new main(); try { string str = main.call(); system.out.println(str); } catch (exception e) { // todo auto-generated catch block e.printstacktrace(); } } }
运行结果:
实现方式2(使用futuretask):
public class main implements callable<string>{ @override public string call() throws exception { // todo auto-generated method stub string str = "我是带返回值的子线程"; return str; } public static void main(string[] args) { futuretask<string> task = new futuretask<string>(new main()); new thread(task).start(); try { if(!task.isdone()) { system.out.println("任务没有执行完成"); } system.out.println("等待中..."); thread.sleep(3000); system.out.println(task.get()); } catch (interruptedexception | executionexception e) { // todo auto-generated catch block e.printstacktrace(); } } }
运行结果:
实现方法3(使用线程池配合future获取):
public class main implements callable<string>{ @override public string call() throws exception { // todo auto-generated method stub string str = "我是带返回值的子线程"; return str; } public static void main(string[] args) throws interruptedexception, executionexception { executorservice newcachethreadpool = executors.newcachedthreadpool(); future<string> future = newcachethreadpool.submit(new main()); if(!future.isdone()) { system.out.println("线程尚未执行结束"); } system.out.println("等待中"); thread.sleep(300); system.out.println(future.get()); newcachethreadpool.shutdown(); } }
运行结果:
线程的状态
java线程主要分为以下六个状态:新建态(new),运行态(runnable),无限期等待(waiting),限期等待(timewaiting),阻塞态(blocked),结束(terminated)。
新建(new)
新建态是线程处于已被创建但没有被启动的状态,在该状态下的线程只是被创建出来了,但并没有开始执行其内部逻辑。
运行(runnable)
运行态分为ready和running,当线程调用start方法后,并不会立即执行,而是去争夺cpu,当线程没有开始执行时,其状态就是ready,而当线程获取cpu时间片后,从ready态转为running态。
等待(waiting)
处于等待状态的线程不会自动苏醒,而只有等待被其它线程唤醒,在等待状态中该线程不会被cpu分配时间,将一直被阻塞。以下操作会造成线程的等待:
-
没有设置timeout参数的object.wait()方法。
-
没有设置timeout参数的thread.join()方法。
-
locksupport.park()方法(实际上park方法并不是locksupport提供的,而是在unsafe中,locksupport只是对其做了一层封装,可以看我的另一篇博客《锁》,里面对于reentrantlock的源码解析有提到这个方法)。
锁:https://juejin.im/post/5d8da403f265da5b5d203bf4
限期等待(timewaiting)
处于限期等待的线程,cpu同样不会分配时间片,但存在于限期等待的线程无需被其它线程显式唤醒,而是在等待时间结束后,系统自动唤醒。以下操作会造成线程限时等待:
-
thread.sleep()方法。
-
设置了timeout参数的object.wait()方法。
-
设置了timeout参数的thread.join()方法。
-
locksupport.parknanos()方法。
-
locksupport.parkuntil()方法。
阻塞(blocked)
当多个线程进入同一块共享区域时,例如synchronized块、reentrantlock控制的区域等,会去整夺锁,成功获取锁的线程继续往下执行,而没有获取锁的线程将进入阻塞状态,等待获取锁。
结束(terminated)
已终止线程的线程状态,线程已结束执行。
sleep和wait的区别
sleep和wait者两个方法都可以使线程进入限期等待的状态,那么这两个方法有什么区别呢?
-
sleep方法由thread提供,而wait方法由object提供。
-
sleep方法可以在任何地方使用,而wait方法只能在synchronized块或synchronized方法中使用(因为必须获wait方法会释放锁,只有获取锁了才能释放锁)。
-
sleep方法只会让出cpu,不会释放锁,而wait方法不仅会让出cpu,还会释放锁。
测试代码:
public class main{ public static void main(string[] args) { thread threada = new thread(new threada()); thread threadb = new thread(new threadb()); threada.setname("threada"); threadb.setname("threadb"); threada.start(); threadb.start(); } public static synchronized void print() { system.out.println("当前线程:"+thread.currentthread().getname()+"执行sleep"); try { thread.sleep(1000); } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } system.out.println("当前线程:"+thread.currentthread().getname()+"执行wait"); try { main.class.wait(1000); } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } system.out.println("当前线程:"+thread.currentthread().getname()+"执行完毕"); } } class threada implements runnable{ @override public void run() { // todo auto-generated method stub main.print(); } } class threadb implements runnable{ @override public void run() { // todo auto-generated method stub main.print(); } }
执行结果:
从上面的结果可以分析出:当线程a执行sleep后,等待一秒被唤醒后继续持有锁,执行之后的代码,而执行wait之后,立即释放了锁,不仅让出了cpu还让出了锁,而后线程b立即持有锁开始执行,和线程a执行了同样的步骤,当线程b执行wait方法之后,释放锁,然后线程a拿到锁打印了第一个执行完毕,然后线程b打印执行完毕。
notify和notifyall的区别
notify
notify可以唤醒一个处于等待状态的线程,上代码:
public class main{ public static void main(string[] args) { object lock = new object(); thread threada = new thread(new runnable() { @override public void run() { synchronized (lock) { try { lock.wait(); } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } print(); } } }); thread threadb = new thread(new runnable() { @override public void run() { synchronized (lock) { print(); lock.notify(); } } }); threada.setname("threada"); threadb.setname("threadb"); threada.start(); threadb.start(); } public static void print() { system.out.println("当前线程:"+thread.currentthread().getname()+"执行print"); try { thread.sleep(1000); } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } system.out.println("当前线程:"+thread.currentthread().getname()+"执行完毕"); } }
执行结果:
代码解释:线程a在开始执行时立即调用wait进入无限等待状态,如果没有别的线程来唤醒它,它将一直等待下去,所以此时b持有锁开始执行,并且在执行完毕时调用了notify方法,该方法可以唤醒wait状态的a线程,于是a线程苏醒,开始执行剩下的代码。
notifyall
notifyall可以用于唤醒所有等待的线程,使所有处于等待状态的线程都变为ready状态,去重新争夺锁。
public class main{ public static void main(string[] args) { object lock = new object(); thread threada = new thread(new runnable() { @override public void run() { synchronized (lock) { try { lock.wait(); } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } print(); } } }); thread threadb = new thread(new runnable() { @override public void run() { synchronized (lock) { print(); lock.notifyall(); } } }); threada.setname("threada"); threadb.setname("threadb"); threada.start(); threadb.start(); } public static void print() { system.out.println("当前线程:"+thread.currentthread().getname()+"执行print"); try { thread.sleep(1000); } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } system.out.println("当前线程:"+thread.currentthread().getname()+"执行完毕"); } }
执行结果:
要唤醒前一个例子中的线程a,不光notify方法可以做到,调用notifyall方法同样也可以做到,那么两者有什么区别呢?
区别
要说清楚他们的区别,首先要简单的说一下java synchronized的一些原理,在openjdk中查看java的源码可以看到,java对象中存在monitor锁,monitor对象中包含锁池和等待池。
锁池,假设有多个对象进入synchronized块争夺锁,而此时已经有一个对象获取到了锁,那么剩余争夺锁的对象将直接进入锁池中。
等待池,假设某个线程调用了对象的wait方法,那么这个线程将直接进入等待池,而等待池中的对象不会去争夺锁,而是等待被唤醒。
下面可以说notify和notifyall的区别了:
notifyall会让所有处于等待池中的线程全部进入锁池去争夺锁,而notify只会随机让其中一个线程去争夺锁。
yield方法
概念
/** * a hint to the scheduler that the current thread is willing to yield * its current use of a processor. the scheduler is free to ignore this * hint. * * <p> yield is a heuristic attempt to improve relative progression * between threads that would otherwise over-utilise a cpu. its use * should be combined with detailed profiling and benchmarking to * ensure that it actually has the desired effect. * * <p> it is rarely appropriate to use this method. it may be useful * for debugging or testing purposes, where it may help to reproduce * bugs due to race conditions. it may also be useful when designing * concurrency control constructs such as the ones in the * {@link java.util.concurrent.locks} package. */ public static native void yield();
yield源码上有一段长长的注释,其大意是说:当前线程调用yield方法时,会给当前线程调度器一个暗示,当前线程愿意让出cpu的使用,但是它的作用应结合详细的分析和测试来确保已经达到了预期的效果,因为调度器可能会无视这个暗示,使用这个方法是不那么合适的,或许在测试环境中使用它会比较好。
测试:
public class main{ public static void main(string[] args) { thread threada = new thread(new runnable() { @override public void run() { system.out.println("threada正在执行yield"); thread.yield(); system.out.println("threada执行yield方法完成"); } }); thread threadb = new thread(new runnable() { @override public void run() { system.out.println("threadb正在执行yield"); thread.yield(); system.out.println("threadb执行yield方法完成"); } }); threada.setname("threada"); threadb.setname("threadb"); threada.start(); threadb.start(); }
测试结果:
可以看出,存在不同的测试结果,这里选出两张。
第一种结果:线程a执行完yield方法,让出cpu给线程b执行。然后两个线程继续执行剩下的代码。
第二种结果:线程a执行yield方法,让出cpu给线程b执行,但是线程b执行yield方法后并没有让出cpu,而是继续往下执行,此时就是系统无视了这个暗示。
interrupt方法
中止线程
interrupt函数可以中断一个线程,在interrupt之前,通常使用stop方法来终止一个线程,但是stop方法过于暴力,它的特点是,不论被中断的线程之前处于一个什么样的状态,都无条件中断,这会导致被中断的线程后续的一些清理工作无法顺利完成,引发一些不必要的异常和隐患,还有可能引发数据不同步的问题。
温柔的interrupt方法
interrupt方法的原理与stop方法相比就显得温柔的多,当调用interrupt方法去终止一个线程时,它并不会暴力地强制终止线程,而是通知这个线程应该要被中断了,和yield一样,这也是一种暗示,至于是否应该中断,由被中断的线程自己去决定。当对一个线程调用interrupt方法时:
-
如果该线程处于被阻塞状态,则立即退出阻塞状态,抛出interruptedexception异常。
-
如果该线程处于running状态,则将该线程的中断标志位设置为true,被设置的线程继续运行,不受影响,当运行结束时由线程决定是否被中断。
线程池
线程池的引入是用来解决在日常开发的多线程开发中,如果开发者需要使用到非常多的线程,那么这些线程在被频繁的创建和销毁时,会对系统造成一定的影响,有可能系统在创建和销毁这些线程所耗费的时间会比完成实际需求的时间还要长。
另外,在线程很多的状况下,对线程的管理就形成了一个很大的问题,开发者通常要将注意力从功能上转移到对杂乱无章的线程进行管理上,这项动作实际上是非常耗费精力的。
利用executors创建不同的线程池满足不同场景的需求
newfixthreadpool(int nthreads)
指定工作线程数量的线程池。
newcachedthreadpool()
处理大量中断事件工作任务的线程池,
-
试图缓存线程并重用,当无缓存线程可用时,就会创建新的工作线程。
-
如果线程闲置的时间超过阈值,则会被终止并移出缓存。
-
系统长时间闲置的时候,不会消耗什么资源。
newsinglethreadexecutor()
创建唯一的工作线程来执行任务,如果线程异常结束,会有另一个线程取代它。可保证顺序执行任务。
newsinglethreadscheduledexecutor()与newscheduledthreadpool(int corepoolsize)
定时或周期性工作调度,两者的区别在于前者是单一工作线程,后者是多线程
newworkstealingpool()
内部构建forkjoinpool,利用working-stealing算法,并行地处理任务,不保证处理顺序。
fork/join框架:把大任务分割称若干个小任务并行执行,最终汇总每个小任务后得到大任务结果的框架。
为什么要使用线程池
线程是稀缺资源,如果无限制地创建线程,会消耗系统资源,而线程池可以代替开发者管理线程,一个线程在结束运行后,不会销毁线程,而是将线程归还线程池,由线程池再进行管理,这样就可以对线程进行复用。
所以线程池不但可以降低资源的消耗,还可以提高线程的可管理性。
使用线程池启动线程
public class main{ public static void main(string[] args) { executorservice newfixthreadpool = executors.newfixedthreadpool(10); newfixthreadpool.execute(new runnable() { @override public void run() { // todo auto-generated method stub system.out.println("通过线程池启动线程成功"); } }); newfixthreadpool.shutdown(); } }
新任务execute执行后的判断
要知道这个点首先要先说说threadpoolexecutor的构造函数,其中有几个参数:
-
corepoolsize:核心线程数量。
-
maximumpoolsize:线程不够用时能创建的最大线程数。
-
workqueue:等待队列。
那么新任务提交后会执行下列判断:
-
如果运行的线程少于corepoolsize,则创建新线程来处理任务,即时线程池中的其它线程是空闲的。
-
如果线程池中的数量大于等于corepoolsize且小于maximumpoolsize,则只有当workqueue满时,才创建新的线程去处理任务。
-
如果设置的corepoolsize和maximumpoolsize相同,则创建的线程池大小是固定的,如果此时有新任务提交,若workqueue未满,则放入workqueue,等待被处理。
-
如果运行的线程数大于等于maximumpoolsize,maximumpoolsize,这时如果workqueue已经满了,则通过handler所指定的策略来处理任务。
handler 线程池饱和策略
-
abortpolicy:直接抛出异常,默认。
-
callerrunspolicy:用调用者所在的线程来执行任务。
-
discardoldestpolicy:丢弃队列中靠最前的任务,并执行当前任务。
-
discardpolicy:直接丢弃任务
-
自定义。
线程池的大小如何选定
这个问题并不是什么秘密,在网上各大技术网站均有文章说明,我就拿一个最受认可的写上吧
-
cpu密集型:线程数 = 核心数或者核心数+1
-
io密集型:线程数 = cpu核数*(1+平均等待时间/平均工作时间)
当然这个也不能完全依赖这个公式,更多的是要依赖平时的经验来操作,这个公式也只是仅供参考而已。
结语
本文提供了一些java多线程和并发方面最最基础的知识,适合初学者了解java多线程的一些基本知识,如果想了解更多的关于并发方面的内容可以看:
https://juejin.im/post/5d8da403f265da5b5d203bf4
作者:object,首发:java知音
推荐阅读(点击即可跳转阅读)
2.面试题内容聚合
3.设计模式内容聚合
5.多线程内容聚合
上一篇: 函数指针--全局函数指针与类的函数指针
下一篇: Mysql—表数据之多表查询