MAX_PRIORITY: 10
MIN_PRIORITY: 1
NORM_PRIORITY: 5
getPriority(): 返回线程优先值
setPriority(int newPriority): 改变线程的优先级
线程创建时继承父线程的优先级
低优先级只是获得调度的概率低,并非一定是在高优先级线程之后才被调用
package com.klvchen.java; /** * @author klvchen * @create 2021-04-07-15:39 * 测试Thread中的常用方法: * 1. start():启动当前线程;调用当前线程的run() * 2. run():通常需要重写Thread类中的此方法,将创建的线程要执行的操作声明在此方法中 * 3. currentThread():静态方法,返回执行当前代码的线程 * 4. getName():获取当前线程的名字 * 5. setName():设置当前线程的名字 * 6. yield():释放当前cpu的执行板 * 7. join():在线程a中调用线程b的join(),此时线程a就进入阻塞状态,直到线程b完全执行完以后,线程a才 * 结束阻塞状态。 * 8. stop():已过时。当执行此方法时,强制结束当前线程。 * 9. sleep(Long millitime):让当前线程 "睡眠" 指定的 millitime 毫秒。在指定的 millitime 毫秒时间内,当前 * 线程是阻塞状态。 * */ class HelloThread extends Thread{ @Override public void run(){ for (int i = 0; i < 100; i++){ if (i % 2 == 0){ // try { // sleep(10); // } catch (InterruptedException e) { // e.printStackTrace(); // } System.out.println(Thread.currentThread().getName() + ":" + Thread.currentThread().getPriority() + ":" + i); } // if (i % 20 == 0){ // this.yield(); // } } } public HelloThread(String name){ super(name); } } public class ThreadMethodTest { public static void main(String[] args){ HelloThread h1 = new HelloThread("Thread:1"); // h1.setName("线程一"); //设置分线程的优先值 h1.setPriority(Thread.MAX_PRIORITY); h1.start(); //给主线程命名 Thread.currentThread().setName("主线程"); Thread.currentThread().setPriority(Thread.MIN_PRIORITY); for (int i = 0; i < 100; i++){ if (i % 2 == 0){ System.out.println(Thread.currentThread().getName() + ":" + Thread.currentThread().getPriority() + ":" + i); } // if(i == 20){ // try { // h1.join(); // }catch (InterruptedException e){ // e.printStackTrace(); // } // } } System.out.println(h1.isAlive()); } }