线程的状态

1. New 已创建对象,还未调用start()

//New 状态
public class Demo01 {
    public static void main(String[] args) {
        Thread t = new Thread(()->{
        });
        System.out.println(t.getState());//获取线程状态
        t.start();
    }
}
NEW
Process finished with exit code 0

2. Runnable 就绪状态 (准备随时上CPU)

//Runnable 就绪状态
public class Demo03 {
    public static void main(String[] args) throws InterruptedException {
        Thread t = new Thread(()->{
            while(true){
               //此时线程一直在准备执行,随时上CPU,处于就绪状态
            }
        });
        t.start();
        Thread.sleep(1000);
        System.out.println(t.getState());
    }
}
RUNNABLE
Process finished with exit code 130

3. Timed_Waiting 在一定时间内,线程是阻塞的

线程内容中加入sleep()、join(超时时间),程序就会进入此状态

//Time_Waiting 在一定时间内,线程是阻塞的
public class Demo04 {
    public static void main(String[] args) throws InterruptedException {
        Thread t = new Thread(()->{
            while(true){
                try {
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
        });
        t.start();
        Thread.sleep(1000);
        System.out.println(t.getState());
    }
}
TIMED_WAITING
Process finished with exit code 130

4. Blocked 当前线程在等待锁,导致线程阻塞

使用synchronized会触发此状态

5. Waiting 当前线程在等待唤醒,导致了阻塞

使用wait会触发此状态

6. Terminated 线程执行完毕

//terminated 线程已经执行完毕
public class Demo02 {
    public static void main(String[] args) throws InterruptedException {
        Thread t = new Thread(()->{
        });
        t.start();
        Thread.sleep(1000);
        System.out.println(t.getState());
    }
}
TERMINATED
Process finished with exit code 0

7. 线程状态转换图

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值