获取当前线程的方法
为线程设置名称
为线程设置优先级,优先级有10个级别,从1-10,能影响cpu调用线程的级别,但是不能决定。
/**
* @author 舒一笑
* @date 2023/5/25
*/
public class Test03 {
public static void main(String[] args) {
Thread thread01 = new Thread(() -> {
for (int i = 0; i < 100; i++) {
System.out.println("tttttt" + i);
}
});
Thread thread02 = new Thread(() -> {
for (int i = 0; i < 100; i++) {
System.out.println("ffffff" + i);
}
});
thread01.setPriority(10);
thread02.setPriority(2);
thread02.start();
thread01.start();
}
}
线程的让步
使用该方法之后线程当前状态为就绪状态
线程的休眠
线程的抢占
使用Thred中的非静态join方法,下图中由于线程是在主线程中join,所以要等到主线程执行完毕才能执行自己的线程
守护线程
默认情况下线程都是非守护线程(也可以叫做用户线程),守护线程也可以叫做后台线程,用于执行后台任务等等,守护线程中最典型的就是GC垃圾回收器
JVM会在程序中不存在非守护线程中结束JVM
线程的等待和唤醒
- synchronized锁资源的线程
- 通过wait去锁等待池,会释放锁资源,线程是waiting状态
- 通过notify,或者notifyAll将等待池中的线程唤醒,一个/全部。添加到锁池中,线程是blockd状态
线程的结束方式
run方法结束、return结束、stop结束
-
stop方式
-
使用共享变量,这种方式使用的也不多,修改共享变量的方式退出死循环,结束run方法
-
interrupt方式