Java线程的生命周期

Java线程的生命周期

起因

当想了解Java生命周期时,发现网上有的博客介绍的是五种状态,有的介绍的是六种状态

因此,翻阅资料了解了下Java线程的生命周期

Java线程生命周期

那么Java线程的生命周期到底是分为五种还是六种呢?

其实出现此情况的原因是根据不同的层面看,就有不同的结果。

一般是分为操作系统Java Api两个层面来分析Java线程生命周期。

基于操作系统划分线程生命周期

  • 初始状态(New)
  • 可运行状态(Runnable)
  • 运行状态(Running)
  • 阻塞状态(Blocked)
  • 死亡状态(Dead)

这时基于操作系统的划分,我们在这不展开讨论,关键来看看基于Java Api 层面划分的线程生命周期

基于Java Api 划分的线程生命周期

首先我们来看看Java源码中Thread.State枚举类:

public enum State {
    /**
         * Thread state for a thread which has not yet started.
         */
    NEW,

    /**
         * Thread state for a runnable thread.  A thread in the runnable
         * state is executing in the Java virtual machine but it may
         * be waiting for other resources from the operating system
         * such as processor.
         */
    RUNNABLE,

    /**
         * Thread state for a thread blocked waiting for a monitor lock.
         * A thread in the blocked state is waiting for a monitor lock
         * to enter a synchronized block/method or
         * reenter a synchronized block/method after calling
         * {@link Object#wait() Object.wait}.
         */
    BLOCKED,

    /**
         * Thread state for a waiting thread.
         * A thread is in the waiting state due to calling one of the
         * following methods:
         * <ul>
         *   <li>{@link Object#wait() Object.wait} with no timeout</li>
         *   <li>{@link #join() Thread.join} with no timeout</li>
         *   <li>{@link LockSupport#park() LockSupport.park}</li>
         * </ul>
         *
         * <p>A thread in the waiting state is waiting for another thread to
         * perform a particular action.
         *
         * For example, a thread that has called <tt>Object.wait()</tt>
         * on an object is waiting for another thread to call
         * <tt>Object.notify()</tt> or <tt>Object.notifyAll()</tt> on
         * that object. A thread that has called <tt>Thread.join()</tt>
         * is waiting for a specified thread to terminate.
         */
    WAITING,

    /**
         * Thread state for a waiting thread with a specified waiting time.
         * A thread is in the timed waiting state due to calling one of
         * the following methods with a specified positive waiting time:
         * <ul>
         *   <li>{@link #sleep Thread.sleep}</li>
         *   <li>{@link Object#wait(long) Object.wait} with timeout</li>
         *   <li>{@link #join(long) Thread.join} with timeout</li>
         *   <li>{@link LockSupport#parkNanos LockSupport.parkNanos}</li>
         *   <li>{@link LockSupport#parkUntil LockSupport.parkUntil}</li>
         * </ul>
         */
    TIMED_WAITING,

    /**
         * Thread state for a terminated thread.
         * The thread has completed execution.
         */
    TERMINATED;
}

可以很清晰的看到,在Java层面上是将线程生命周期分为六种状态。

那么我们看看状态转换关系:

假设有一个线程Thread t

情况1 NEW --> RUNNABLE
  • 当调用t.start() 方法时,由 NEW --> RUNNABLE
情况2 RUNNABLE <–> WAITING

t 线程synchronized(obj) 获取了对象锁后

  • 调用 obj.wait()方法时,t 线程从 RUNNABLE --> WAITING
  • 调用 obj.notify()obj.notifyAll()t.interrupt()
    • 竞争锁成功,t 线程WAITING --> RUNNABLE
    • 竞争锁失败,t 线程WAITING --> BLOCKED
情况 3 RUNNABLE <–> WAITING
  • 当前线程调用t.join() 方法时,当前线程从 RUNNABLE --> WAITING
    • 注意是当前线程在t 线程对象的监视器上等待
  • t 线程运行结束,或调用了当前线程的 interrupt() 时,当前线程从 WAITING --> RUNNABLE
情况 4 RUNNABLE <–> WAITING
  • 当前线程调用 LockSupport.park() 方法会让当前线程从 RUNNABLE --> WAITING
  • 调用 LockSupport.unpark(目标线程) 或调用了线程 的 interrupt(),会让目标线程从 WAITING --> RUNNABLE
情况 5 RUNNABLE <–> TIMED_WAITING

t 线程synchronized(obj) 获取了对象锁后

  • 调用 obj.wait(long n) 方法时,t 线程RUNNABLE --> TIMED_WAITING
  • t 线程等待时间超过了 n 毫秒,或调用 obj.notify()obj.notifyAll()t.interrupt()
    • 竞争锁成功,t 线程TIMED_WAITING --> RUNNABLE
    • 竞争锁失败,t 线程TIMED_WAITING --> BLOCKED
情况 6 RUNNABLE <–> TIMED_WAITING
  • 当前线程调用 t.join(long n) 方法时,当前线程从 RUNNABLE --> TIMED_WAITING
    • 注意是当前线程在t 线程对象的监视器上等待
  • 当前线程等待时间超过了 n 毫秒,或t 线程运行结束,或调用了当前线程interrupt() 时,当前线程从TIMED_WAITING --> RUNNABLE
情况 7 RUNNABLE <–> TIMED_WAITING
  • 当前线程调用 Thread.sleep(long n)当前线程RUNNABLE --> TIMED_WAITING
  • 当前线程等待时间超过了 n 毫秒,当前线程TIMED_WAITING --> RUNNABLE
情况 8 RUNNABLE <–> TIMED_WAITING
  • 当前线程调用LockSupport.parkNanos(long nanos)LockSupport.parkUntil(long millis) 时,当前线程从 RUNNABLE --> TIMED_WAITING
  • 调用 LockSupport.unpark(目标线程) 或调用了线程 的interrupt() ,或是等待超时,会让目标线程从TIMED_WAITING–> RUNNABLE
情况 9 RUNNABLE <–> BLOCKED
  • t 线程synchronized(obj) 获取了对象锁时如果竞争失败,从 RUNNABLE --> BLOCKED
  • 持 obj 锁线程的同步代码块执行完毕,会唤醒该对象上所有 BLOCKED 的线程重新竞争,如果其中 t 线程竞争成功,从 BLOCKED --> RUNNABLE ,其它失败的线程仍然 BLOCKED
情况 10 RUNNABLE <–> TERMINATED

当前线程所有代码运行完毕,进入 TERMINATED

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Java线程生命周期可以分为以下几个阶段: 1. 新建(New):当创建一个Thread对象时,线程处于新建状态。此时线程还没有开始运行。 2. 就绪(Runnable):线程进入就绪状态后,表示该线程已经被创建并且可以被系统调度执行。但是,由于线程调度是由操作系统控制的,所以具体的执行时间是不确定的。 3. 运行(Running):当线程获得CPU资源后,进入运行状态。此时线程开始执行run()方法中的代码。 4. 阻塞(Blocked):线程在运行过程中,可能因为一些原因而暂时停止执行。比如,线程被调用了sleep()方法、等待某个条件满足、请求输入输出等。在这情况下,线程会进入阻塞状态。 5. 等待(Waiting):线程在某些特定条件下会进入等待状态。比如,调用了wait()方法或者join()方法。此时,线程会释放持有的锁,并且进入等待队列,直到被唤醒。 6. 超时等待(Timed Waiting):与等待状态类似,但是在等待一定时间后会自动唤醒。比如,调用了sleep()方法或者wait()方法的带有超时参数的重载方法。 7. 终止(Terminated):线程执行完run()方法中的代码后,或者因为异常或错误而提前退出时,线程将进入终止状态。 这些是Java线程的基本生命周期,在实际应用中,线程的状态可能会在不同阶段之间切换。可以通过Thread类中的方法来控制线程的状态和状态转换。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值