Java 线程优先级

  线程的优先级指的是,线程的优先级越高越有可能先执行,但仅仅是有可能而已。

1. 设置优先级

public final void setPriority(int newPriority)

class MyThread implements Runnable {
    private boolean flag = true;
    @Override
    public void run() {
        System.out.println("hello");    
    }

}

public class Test {
    public static void main(String[] args) throws InterruptedException {
        MyThread myThread = new MyThread();
        Thread thread = new Thread(myThread);
        // 设置线程的优先级为 5
        thread.setPriority(5);
        thread.start();
    }
}

  我们可以使用 Thread类 提供的几个常量进行优先级的设置。

    // 最高优先级
    public final static int MAX_PRIORITY = 10;
    // 中等优先级
    public final static int NORM_PRIORITY = 5;
    // 最低优先级
    public final static int MIN_PRIORITY = 1;

2.取得优先级

public final int getPriority()

public class Test12 {
    public static void main(String[] args) throws InterruptedException {
        MyThread myThread = new MyThread();
        Thread thread = new Thread(myThread);
        thread.setPriority(Thread.MAX_PRIORITY);
        // 取得线程的优先级并打印
        System.out.println(thread.getPriority());
    }
}

  主方法也是一个线程,主线程的优先级为5。

int priority = Therad.currentThread().getPriority();

3. 线程具有继承性

  线程之间是具有继承关系的,比如在A线程中启动B线程,那么此时启动的B线程的优先级与A优先级一样。

class A implements Runnable{
    @Override
    public void run() {
        System.out.println("A的优先级为:" + Thread.currentThread().getPriority());
        Thread thread = new Thread(new B());
        thread.start();
    }
} 

class B implements Runnable {
    @Override
    public void run() {
        System.out.println("B的优先级为:" + Thread.currentThread().getPriority());
    }
} 
public class Test {
    public static void main(String[] args) throws InterruptedException {
        Thread thread = new Thread(new A());
        thread.setPriority(Thread.MAX_PRIORITY);
        thread.start();

        Thread.sleep(1000);
        System.out.print("单独启动的线程B: ");
        new Thread(new B()).start();
    }
}

运行结果为:

运行结果

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值