当前位置:网站首页>The Thread State,
The Thread State,
2022-08-10 22:04:00 【InfoQ】
前言
絮叨
线程状态转换图

- NEW 初始状态
- RUNNABLE 运行状态
- BLOCKED 阻塞状态
- WAITING 等待状态
- TIME_WAITING 超时等待状态
- TERMINATED 终止状态
阻塞与等待的区别
主要操作
start()
public synchronized void start() {
//判断是否首次启动
if (threadStatus != 0)
throw new IllegalThreadStateException();
group.add(this);
boolean started = false;
try {
//启动线程
start0();
started = true;
} finally {
try {
if (!started) {
group.threadStartFailed(this);
}
} catch (Throwable ignore) {
/* do nothing. If start0 threw a Throwable then
it will be passed up the call stack */
}
}
}
private native void start0();
run()
sleep()
sleep(long millis) //参数为毫秒
sleep(long millis,int nanoseconds) //第一参数为毫秒,第二个参数为纳秒
yield()
join()
1 join()
2 join(long millis) //参数为毫秒
3 join(long millis,int nanoseconds) //第一参数为毫秒,第二个参数为纳秒
public final synchronized void join(long millis) throws InterruptedException {
long base = System.currentTimeMillis();
long now = 0;
if (millis < 0) {
throw new IllegalArgumentException("timeout value is negative");
}
//0You need to wait until the target threadrun完
if (millis == 0) {
while (isAlive()) {
wait(0);
}
} else {
//If the target thread is notrunis finished and the blocking time has not expired,Then the calling thread will wait forever.
while (isAlive()) {
long delay = millis - now;
if (delay <= 0) {
break;
}
wait(delay);
now = System.currentTimeMillis() - base;
}
}
}
interrupt()
- 如果线程sleep()、wait()、join()等处于阻塞状态,那么线程会定时检查中断状态位如果发现中断状态位为true,则会在这些阻塞方法调用处抛出InterruptedException异常,并且在抛出异常后立即将线程的中断状态位清除,即重- New set tofalse.抛出异常是为了线程从阻塞状态醒过来,并在结束线程前让程序员有足够的时间来处理中断请求.
- 如果线程正在运行、争用synchronized、lock()等,那么是不可中断的,他们会忽略.
- isInterrupted()
- 此方法只会读取线程的中断标志位,并不会重置.
- interrupted()
- 此方法读取线程的中断标志位,并会重置.
- throw InterruptException
- 抛出该异常的同时,会重置中断标志位.
结尾

日常求赞
边栏推荐
- Self-organization is a two-way journey between managers and members
- How to secure users in LDAP directory service?
- C#【必备技能篇】Hex文件转bin文件的代码实现
- 黑猫带你学Makefile第12篇:常见Makefile问题汇总
- LeetCode-36-二叉搜索树与双向链表
- LeetCode Daily Question (1573. Number of Ways to Split a String)
- 地理探测器Geodetector软件的下载、应用与结果解读
- ArcGIS自动随机生成采样点的方法
- 带你一文读懂SaaS版多租户商城系统对多品牌企业的应用价值
- Live Classroom System 09--Tencent Cloud VOD Management Module (1)
猜你喜欢

测试4年感觉和1、2年时没什么不同?这和应届生有什么区别?

Translating scientific and technological papers, how to translate from Russian to Chinese

【开源教程5】疯壳·开源编队无人机-飞控固件烧写

Likou 221 questions, the largest square

shell(文本打印工具awk)

爬虫request.get()出现错误

服务——DHCP原理与配置

JVM classic fifty questions, now the interview is stable

异常的了解

QT笔记——vs + qt 创建一个带界面的 dll 和 调用带界面的dll
随机推荐
Black cat takes you to learn Makefile Part 12: Summary of common Makefile problems
Extended Chinese Remainder Theorem
FPGA - 7系列 FPGA内部结构之Memory Resources -03- 内置纠错功能
HGAME 2022 Week2 writeup by pankas
这些不可不知的JVM知识,我都用思维导图整理好了
ThreadLocal comprehensive analysis (1)
基于Pix4Dmapper的运动结构恢复法无人机影像三维模型重建
QT笔记——用VS + qt 生成dll 和 调用生成的dll
ArcMap创建镶嵌数据集、导入栅格图像并修改像元数值显示范围
shell脚本
MySQL Advanced Commands
力扣221题,最大正方形
自组织是管理者和成员的双向奔赴
LeetCode-402 - Remove K digits
ENVI最小距离、最大似然、支持向量机遥感影像分类
UPDATE:修改数据语法使用例——《mysql 从入门到内卷再到入土》
APP UI自动化测试常见面试题,或许有用呢~
ACM模板笔记:最长不下降/上升子序列
Huawei router clock near the drainage experiment (using stream strategy)
Interpretation of the paper (g-U-Nets) "Graph U-Nets"