JAVA 线程的生命周期

JAVA线程的五种状态,新建(New),就绪(Runnable),运行(Running),阻塞(Blocked),死亡(Dead)

新建(New)

New会为其分配内存,初始化成员变量。

就绪(Runnable)

当调用start后,线程进入就绪状态。JVM会为其创建函数调度栈和计数器。但是此时线程依然没有执行,等待获取CPU的执行片。

运行和阻塞状态

当线程获取到CPU的执行片的时候,进入了运行状态,可能因为以下原因进入阻塞状态,

CPU的执行片已经用完,JVM切换到其他线程执行,

线程调用Sleep,当Sleep结束后计入就绪状态,

线程调用阻塞IO方法,线程会一直阻塞,当阻塞IO返回的时候,进入就绪状态,

等待同步锁,当获取到同步锁的时候进入就绪状态,

线程在等待某个通知,当获取到某个通知,

线程调用了suspend挂起,当调用resume会进入就绪状态。

死亡

线程结束后,就处于死亡状态。线程会以以下三种方式结束,

1、正常执行完成

2、线程抛出一个未捕获的Exception或者Error

3、线程直接调用Stop方法(容易造成死锁)

子线程一旦调用和主线程的地位是一样的,主线程一旦结束,子线程不会跟着借宿。

线程对象的isAlive()方法在就绪,运行和阻塞时候返回true,在新建和死亡是返回false。

对于死亡的线程调用start()是无效的,会抛出异常。已经死亡的线程不可再次作为线程执行。

对于新建的线程调用两次start()也会抛出异常。

附:

JAVA源码的ThreadState的枚举

    /**
     * A thread state.  A thread can be in one of the following states:
     * <ul>
     * <li>{@link #NEW}<br>
     *     A thread that has not yet started is in this state.
     *     </li>
     * <li>{@link #RUNNABLE}<br>
     *     A thread executing in the Java virtual machine is in this state.
     *     </li>
     * <li>{@link #BLOCKED}<br>
     *     A thread that is blocked waiting for a monitor lock
     *     is in this state.
     *     </li>
     * <li>{@link #WAITING}<br>
     *     A thread that is waiting indefinitely for another thread to
     *     perform a particular action is in this state.
     *     </li>
     * <li>{@link #TIMED_WAITING}<br>
     *     A thread that is waiting for another thread to perform an action
     *     for up to a specified waiting time is in this state.
     *     </li>
     * <li>{@link #TERMINATED}<br>
     *     A thread that has exited is in this state.
     *     </li>
     * </ul>
     *
     * <p>
     * A thread can be in only one state at a given point in time.
     * These states are virtual machine states which do not reflect
     * any operating system thread states.
     *
     * @since   1.5
     * @see #getState
     */
    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;
    }



  • 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、付费专栏及课程。

余额充值