Java 线程的生命周期详细介绍及实例代码
当线程被创建并启动之后,它既不是一启动就进入执行状态,也不是一直处于执行状态,在其生命周期中,要经过“新建(New)”、“就绪(Runnable)”、“运行(Running')”、“阻塞(Blocked)”和“死亡(Dead)”五种状态。线程在创建之后,不可能一直霸占着CPU独立运行,需要在多个线程之间切换,所以大部分时间处于运行、阻塞之间切换。
一、线程的状态
线程的存在有几种不同的状态,如下:
- New状态
- Ready状态
- Running状态
- Dead状态
- Non Runnable状态
1、New状态
New状态是线程已经被创建,但是还未开始运行的状态。此状态通过调用线程的start()方法可让线程运行。
2、Runnable状态
Runnable状态可称为准备运行状态,也可称为队列,此状态通过调用线程的start()方法可让线程运行。
线程调度器决定要运行哪些线程,且线程运行多久。
3、Running状态
如果一个线程正在执行中,那么它处于Running状态。
4、Dead状态
一旦某个线程进入了Dead状态,那么它就再也不能运行了。
5、Non runnable状态
- 某个正在运行的线程可转变到Non runnable状态,这取决于运行情况。
- 某个线程还可以一直保持Non runnable状态,直到满足的条件出现。
- 某个Non runnable状态的线程不能直接跳转到运行状态,而是必须先转变为Runnable状态。
- 睡眠Sleeping:线程睡眠指定的时间。
- I/O阻塞:线程等待,直到阻塞操作的完成。
- join阻塞:线程等待,直到另一个线程执行完成。
- 等待通知:线程等待另一个线程的通知。
- 锁机制阻塞:线程等待,直到指定的锁被释放,获得锁。
Java虚拟机JVM根据线程的优先级和调度原则执行线程。
二、线程调度器
在JVM中,线程调度器的实现通常基于以下两种策略:
抢占式调度策略
分时调度策略或Round-robin循环调度策略
线程调度器的实现与平台无关,因此线程的调度是不可预测的。
三、线程的优先级
JVM会为每一个新创建的线程分配一个优先级。
0级:这是最低的优先级
5级:这是普通的优先级
10级:这是最高的优先级
为了保存这些值,线程类有三个相应的变量:
- public static final int MIN_PRIORITY
- public static final int NORM_PRIORITY
- public static final int MAX_PRIORITY
一个线程首先会继承其父线程的优先级,每一个线程默认的优先级是5级(Normal优先级),主线程的默认优先级为5级。
可以通过setPriority(int priority)方法来设置线程的优先级。
public final void setPriority(int priority)
public void getPriority();
用户定义的线程,其默认的线程名为Thread+序号,序号从0开始,比如第一个线程为Thread0。
线程名可以通过setName(String name)方法进行设置,可使用getName()方法获得线程的名字。
public final void setName(String name)
public final String getName().
实例
下面看一个例子:
package demo.ch; public class UserThread extends Thread { UserThread() { super(); } UserThread(String name) { super(name); } public void run() { System.out.println("thread started running.."); } public static void main(String[] args) { UserThread thread1 = new UserThread("Thread1"); UserThread thread2 = new UserThread("Thread2"); System.out.println("Thread 1 initial name and priority"); System.out.println("name:" + thread1.getName()); System.out.println("priority:" + thread1.getPriority()); System.out.println("Thread 2 initial name and priority"); System.out.println("name:" + thread2.getName()); System.out.println("priority:" + thread2.getPriority()); System.out.println(""); thread1.setPriority(6); thread2.setPriority(9); System.out.println("Thread 1 initial name and priority"); System.out.println("name:" + thread1.getName()); System.out.println("priority:" + thread1.getPriority()); System.out.println("Thread 2 initial name and priority"); System.out.println("name:" + thread2.getName()); System.out.println("priority:" + thread2.getPriority()); System.out.println(""); thread1.start(); thread2.start(); for(int i=0; i<5; i++) System.out.println("main method i value: " + i); } }
输出结果:
Thread 1 initial name and priority name:Thread1 priority:5 Thread 2 initial name and priority name:Thread2 priority:5 Thread 1 initial name and priority name:Thread1 priority:6 Thread 2 initial name and priority name:Thread2 priority:9 main method i value: 0 main method i value: 1 thread started running.. main method i value: 2 thread started running.. main method i value: 3 main method i value: 4
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
相关文章
Spring注解驱动之关于@Bean注解指定初始化和销毁的方法
这篇文章主要介绍了Spring注解驱动之关于@Bean注解指定初始化和销毁的方法,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2022-09-09Spring Security6配置方法(废弃WebSecurityConfigurerAdapter)
本文主要介绍了Spring Security6配置方法(废弃WebSecurityConfigurerAdapter),就像文章标题所说的,SpringSecurity已经废弃了继承WebSecurityConfigurerAdapter的配置方式,下面就来详细的介绍一下,感兴趣的可以了解一下2023-12-12SpringBoot 容器刷新前回调ApplicationContextInitializer
这篇文章主要为大家介绍了SpringBoot 容器刷新前回调ApplicationContextInitializer使用示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2022-12-12实现一个基于Servlet的hello world程序详解步骤
Java Servlet 是运行在 Web 服务器或应用服务器上的程序,它是作为来自 Web 浏览器或其他 HTTP 客户端的请求和 HTTP 服务器上的数据库或应用程序之间的中间层2022-02-02
最新评论