Java多线程

45 篇文章 1 订阅
24 篇文章 0 订阅

old《1.1.2 线程状态》:

考研的OS教科书里告诉我们,线程可以有五种状态:开始,就绪,运行,阻塞(等待),结束。而JDK对线程的状态是这样的:
A thread can be in one of the following states:
NEW
A thread that has not yet started is in this state.
RUNNABLE
A thread executing in the Java virtual machine is in this state.
BLOCKED
A thread that is blocked waiting for a monitor lock is in this state.
WAITING
A thread that is waiting indefinitely for another thread to perform a particular action is in this state.
TIMED_WAITING
A thread that is waiting for another thread to perform an action for up to a specified waiting time is in this state.
TERMINATED
A thread that has exited is in this state.

其中最明显的NEW对应开始,TERMINATED对应结束。问题是剩下的RUNNABLE,BLOCKED,WAITING,TIMED_WAITING怎么对应。经过代码实验我可以有把握地认为:
RUNNABLE对应教科书里的就绪运行。理由如下:
在main函数里有如下代码
System.out.println("调用start方法后 thread3:" + thread3.getState().toString());结果打印 RUNNABLE。此语句在main函数中执行,执行时线程thread3不可能为运行状态,只可能是就绪态。(此处未考虑多CPU的情况)
BLOCKED,WAITING,TIMED_WAITING则对应于教科书里阻塞的不同情况

old《1.1.3 线程中止》:
线程的 interrupt() 方法并不会中断一个Runnable的线程, 留下文在此供进一步研究:Java多线程之interrupt()的深度研究

old《1.1.4 内存屏障和CPU缓存》:
在这里插入图片描述
在这里插入图片描述

old《1.1.5 线程通信》:
wait/notify要求在同步代码中使用,免去了死锁的困扰,但是要注意先调用wait,再调用notify,否则wait就永久等待了;
LockSupport.park/unpark没有顺序要求,但是park不会释放锁,在同步代码中使用要防止死锁。
但是"伪唤醒"讲得不明不白的,以后再研究。此文似可为参考

old《1.1.6 线程封闭之ThreadLocal和栈封闭》:
ThreadLocal和方法的局部变量,都可用于实现线程封闭。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

qq_23204557

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值