线程状态


线程状态

线程五个状态

1、创建状态

2、就绪状态

3、运行状态

4、阻塞状态

5、死亡状态

image-20220410165802235

线程常用方法:

image-20220410165734211

停止线程

  • 不推荐使用jdk提供的stop()、destroy()方法【已废弃】
  • 推荐线程自己停下来
  • 建议使用一个标志位进行终止变量,当flag=false则终止线程。
public class TestStop implements Runnable {
    //设置一个标志位
    private boolean flag=true;
    @Override
    public void run() {
        //线程体
        int i= 0;
        while (flag){
            System.out.println("run....Thread"+i++);
        }
    }
    //2、设置一个公开的方法停止线程,转换标志位
    public void stop(){
        this.flag=false;
    }
    public static void main(String[] args) {
     TestStop testStop=new TestStop();
     new Thread(testStop).start();
        for (int i = 0; i < 1000; i++) {
            System.out.println("main"+i);
            if(i==900){
                //调用stop方法切换标志位,让线程停止
                testStop.stop();
                System.out.println("线程该停止了");
            }
        }
    }
}

线程休眠

  • sleep(时间)指定当前线程阻塞的毫秒数
  • sleep存在异常InterruptedException
  • sleep时间达到后线程进入就绪状态
  • sleep可以模拟网络延时,倒计时等
  • 每一个对象都有一个锁,sleep不会释放锁
//模拟倒计时10秒
public class TestSleep2 {
    public static void main(String[] args) {
//        try {
//            tenDown();
//        } catch (InterruptedException e) {
//            e.printStackTrace();
//        }
        //打印当前系统时间
        Date startTime=new Date(System.currentTimeMillis());//获取系统当前时间
        while(true){
            try {
                Thread.sleep(1000);
                System.out.println(new SimpleDateFormat("HH:mm:ss").format(startTime));
                // SimpleDateFormat()时间格式化工厂
                startTime=new Date(System.currentTimeMillis());//更新当前时间
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
    public static void tenDown() throws InterruptedException {
        int num=10;
        while (true){
            Thread.sleep(1000);
            System.out.println(num--);
            if(num<=0){
                break;
            }
        }
    }
}

线程礼让

  • 礼让线程,让当前正在执行的线程暂停,但不阻塞
  • 将线程从运行状态转为就绪状态
  • 让cpu重新调度,礼让不一定成功!看cpu心情
Thread.yield();//礼让

Join


  • Join合并线程,待此线程执行完成后,在执行其他线程,其他线程阻塞
  • 可以想象成类似插队
thread.join();//插队

线程状态观测

  • Thread.State

image-20220410224724766

//观察测试线程的状态
public class TestState {
    public static void main(String[] args) throws InterruptedException {
        Thread thread=new Thread(()->{
            for (int i = 0; i < 5; i++) {
                try {
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
            System.out.println("//////////");
        });

        //观察状态
        Thread.State state=thread.getState();
        System.out.println(state);
        //观察启动
        thread.start();//启动线程
        state=thread.getState();
        System.out.println(state);//Run
        while(state!=Thread.State.TERMINATED) {//只要线程不终止,就一直输出状态
            Thread.sleep(100);
            state = thread.getState();//更新线程状态
            System.out.println(state);
        }
    }
}

线程优先级

  • Java提供一个线程调度器来监控程序中启动后进入就绪状态的所有线程,线程调度器按照优先级顺序决定应该调度哪个线程来执行。

  • 优先级顺序用字母表示,范围从1-10

    image-20220411170632338

使用以下方式改变或获取优先级

thread.setPriority();
thread.getPriority();

优先级低只是意味着获得调度的概率低,并不是优先级低就不会被调用了,这都是看Cpu的调度,所以优先级不是绝对的。

优先级的设定建议在start()调度前。

守护线程

  • 线程分为用户线程和守护线程
  • 虚拟机必须确保用户线程执行完毕
  • 虚拟机不用等待守护线程执行完毕
  • 如,后台记录操作日志,监控内存,垃圾回收等待...
public class TestDaemon {
    public static void main(String[] args) {
        God god=new God();
        You you=new You();
        Thread thread=new Thread(god);
        thread.setDaemon(true);//默认是false表示是用户线程,正常的线程都是用户线程...
        thread.start();//上帝守护线程启动
        new Thread(you).start();//用户线程启动
    }
}
//上帝
class God implements Runnable{
    @Override
    public void run() {
        while (true){
            System.out.println("上帝笑笑不说话");
        }
    }
}
//你
class You implements Runnable{
    @Override
    public void run() {
        for (int i = 0; i < 36500; i++) {
            System.out.println("你一生不开心的活着");
        }
        System.out.println("=====给爷死======");
    }
}

相关