欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

线程的状态和优先级

程序员文章站 2022-05-03 11:53:21
...

线程五大状态

线程的状态和优先级

1. 线程停止

1. 不推荐使用 JDK 提供的 stop()、destory() 方法,已经废弃了。
2. 推荐线程自己停止下来
3. 建议使用一个标志位进行终止变量,当 flag = false; 则终止线程运行。
package com.baiyi.threadstatus;

/**
 * @author 白衣
 * @Description: 测试停止线程
 *  1. 建议线程正常停止 --> 利用次数,不建议死循环
 *  2. 建议使用标志位 --> 设置一个标志位
 * @Date 2020/11/22
 */
public class TestStop implements Runnable{

    // 1. 设置一个标志位
    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("线程停止了");
            }
        }
    }
}

2. 线程休眠

- 线程休眠: 使用 sleep() 函数实现。
- 注意:
	1. sleep(时间)指定当前线程阻塞的毫秒数。  1000=1s
	2. sleep 存在异常 InterruptedException
	3. sleep 时间达到后线程进入就绪状态;
	4. sleep 可以模拟网络延时,倒计时等。
	5. 每一个对象都有一把锁, sleep 不会释放锁。

- 演示:倒计时
package com.baiyi.threadstatus;

/**
 * @author 白衣
 * @Description: 模拟倒计时
 * @Date 2020/11/22
 */
public class TestSleep {
    public static void main(String[] args) {
        try {
            tenDown();
        } 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;
            }
        }
    }
}

3. 线程礼让

- 什么是线程礼让:让当前正在执行的线程暂停,但不阻塞。
- 将线程从运行状态转为就绪状态,让 cpu 重新调度,礼让不一定成功!!需要看 CPU 心情
package com.baiyi.threadstatus;

/**
 * @author 白衣
 * @Description: 测试线程礼让 礼让不一定成功,看cpu心情
 * @Date 2020/11/22
 */
public class TestYield {
    public static void main(String[] args) {
        new Thread(new MyYield(), "a").start();
        new Thread(new MyYield(), "b").start();
    }
}

class MyYield implements Runnable{
    @Override
    public void run() {
        System.out.println(Thread.currentThread().getName() + "线程开始执行");
        Thread.yield();
        System.out.println(Thread.currentThread().getName() + "线程停止执行");
    }
}
- 结果:
a线程开始执行
b线程开始执行
a线程停止执行
b线程停止执行

4. 线程强制执行

- Join 合并线程,待此线程执行完成后,再执行其他线程,其他线程阻塞,可以想象成插队,
- 你是 VIP 可以强行插队。
package com.baiyi.threadstatus;

/**
 * @author 白衣
 * @Description: 测试强制执行 join
 * @Date 2020/11/22
 */
public class TestJoin implements Runnable{
    @Override
    public void run() {
        for (int i = 0; i < 100; i++) {
            System.out.println("线程vip来了" + i);
        }
    }

    public static void main(String[] args) throws InterruptedException {
        TestJoin testJoin = new TestJoin();
        Thread thread = new Thread(testJoin);

        // 主线程
        for (int i = 0; i < 200; i++) {
            System.out.println("main " + i);
            if (i == 100){
                thread.start();
                thread.join();
            }
        }
    }
}

5. 检测线程状态

  1. 初始(NEW):新创建了一个线程对象,但还没有调用start()方法。
  2. 运行(RUNNABLE):Java线程中将就绪(ready)和运行中(running)两种状态笼统的称为“运行”。线程对象创建后,其他线程(比如main线程)调用了该对象的start()方法。该状态的线程位于可运行线程池中,等待被线程调度选中,获取CPU的使用权,此时处于就绪状态(ready)。
    就绪状态的线程在获得CPU时间片后变为运行中状态(running)。
  3. 阻塞(BLOCKED):表示线程阻塞于锁。
  4. 等待(WAITING):进入该状态的线程需要等待其他线程做出一些特定动作(通知或中断)。
  5. 超时等待(TIMED_WAITING):该状态不同于WAITING,它可以在指定的时间后自行返回。
  6. 终止(TERMINATED):表示该线程已经执行完毕。
package com.baiyi.threadstatus;

/**
 * @author 白衣
 * @Description: 检测线程状态
 * @Date 2020/11/22
 */
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();
        // new
        System.out.println(state);

        thread.start();
        state = thread.getState();
        // run
        System.out.println(state);

        while (state != Thread.State.TERMINATED){
            Thread.sleep(1000);
            state = thread.getState();
            System.out.println(state);
        }
    }
}
- 结果:
        NEW
        RUNNABLE
        TIMED_WAITING
        TIMED_WAITING
        TIMED_WAITING	
        TIMED_WAITING
        --------
        TERMINATED
- 注意:线程一旦死亡,就不能再次启动了。

6. 线程优先级

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

  • 线程优先级使用数字来表示,范围从 1- 10

    • Thread.MIN_PRIORITY = 1;
    • Thread.MAX_PRIORITY = 10;
    • Thread.NORM_PRIORITY = 5;
  • 使用以下方式改变或获取优先级
    getPriority();
    setPriority();

  • 注意:优先级低只是意味着获得调度的概率低,并不是优先级低就不会被调用了,这都是看 CPU 的调度

package com.baiyi.threadstatus;

/**
 * @author 白衣
 * @Description: 测试线程优先级
 * @Date 2020/11/22
 */
public class TestPriority {
    public static void main(String[] args) {
        // 主线程默认优先级
        System.out.println(Thread.currentThread().getName() + "-->" + Thread.currentThread().getPriority());

        MyPriority myPriority = new MyPriority();

        Thread t1 = new Thread(myPriority, "t1");
        Thread t2 = new Thread(myPriority, "t2");
        Thread t3 = new Thread(myPriority, "t3");
        Thread t4 = new Thread(myPriority, "t4");
        Thread t5 = new Thread(myPriority, "t5");
        Thread t6 = new Thread(myPriority, "t6");

        t1.start();

        t2.setPriority(1);
        t2.start();

        t3.setPriority(4);
        t3.start();

        t4.setPriority(Thread.MAX_PRIORITY);
        t4.start();

        t5.setPriority(7);
        t5.start();

        t6.start();

    }
}

class MyPriority implements Runnable{
    @Override
    public void run() {
        System.out.println(Thread.currentThread().getName() + "-->" + Thread.currentThread().getPriority());
    }
}