写点什么

多线程详解第 3 讲:线程状态,感悟分享

用户头像
极客good
关注
发布于: 刚刚

[](

)5、线程礼让


线程礼让


  • 礼让线程,让当前正在执行的线程暂停,但不阻塞

  • 将线程从运行状态转为就绪状态

  • 让 cpu 重新调度,礼让不一定成功!看 CPU 心情


代码模拟


package com.kaung.state;


public class TestYield {


public static void main(String[] args) {


MyYield myYield = new MyYield();


new Thread(myYield,"a").start();


new Thread(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()+"线程停止执行");


}


}


运行截图



总结


礼让不一定成功,需要看 cpu 心情。

[](

)6、Join


Join


  • Join 合并线程,待此线程执行完成后,再执行其他线程,其他线程阻塞

  • 可以想象成插队



代码模拟


package com.kaung.state;


//测试 join 方法,想象成插队


public class TestJoin implements Runnable{


@Override


public void run() {


for (int i = 0; i < 1000; i++) {


System.out.println("线程 VIP 来了"+i);


}


}


public static void main(String[] args) throws InterruptedException {


//启动我们的线程


TestJoin testJoin = new TestJoin();


Thread thread = new Thread(testJoin);


thread.start();


for (int i = 0; i < 500; i++) {


if(i==200){


thread.join();


}


System.out.println("main"+i);


}


}


}


运行截图


[](

)7、线程状态观测


JDk 帮助文档



观察线程状态


package com.kaung.state;


//观测线程的状态


public class TestState {


public static void main(String[] args) throws InterruptedException {


Thread thread = new Thread(()->{


for (int i = 0; i < 5; i++) { //让线程睡眠 5s


try {


Thread.sleep(1000);


} catch (InterruptedException e) {


e.printStackTrace();


}


}


System.out.println("///");


});


//观察状态


Thread.State state = thread.getState();


System.out.println(state); //NEW


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);


}


}


}


运行截图



线程一旦进入死亡状态,就不能再次启动了。

[](

)8、线程优先级


线程优先级


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

  • 线程的优先级用数字表示,范围从 1~10.

  • Thread.MIN_PRIORITY = 1;

  • Thread.MAX_PRIORITY = 10;

  • Thread.NORM_PRIORITY = 5;

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

  • getPriority() . setPriority(int xxx)


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


代码


package com.kaung.state;


//测试线程的优先级


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");


//先设置线程的优先级,再启动


t1.start();


t2.setPriority(1);


t2.start();


t3.setPriority(4);


t3.start();


t4.setPriority(Thread.MAX_PRIORITY); //MAX_PRIORITY = 10


t4.start();


}


}


class MyPriority implements Runnable{


@Override


public void run() {


//获取线程的优先级


System.out.println(Thread.currentThread().getName()+"-->"+Thread.currentThread().getPriority());


}


}


运行截图



总结


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

[](

)9、守护(daemon)线程


守护(daemon)线程


  • 线程分为用户线程守护线程

  • 虚拟机必须确保用户线程执行完毕

  • 虚拟机不用等待守护线程执行完毕

  • 如,后台记录操作日志,监控内存,垃圾回收等待…


![在这里插入图片描述](https://img-blog.csdnimg.cn/20210423174159429.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG


【一线大厂Java面试题解析+核心总结学习笔记+最新架构讲解视频+实战项目源码讲义】
浏览器打开:qq.cn.hn/FTf 免费领取
复制代码


9nLmNzZG4ubmV0L3dlaXhpbl80NTYyOTI4NQ==,size_16,color_FFFFFF,t_70)


代码模拟


package com.kaung.state;


//测试守护线程


//上帝守护你


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("上帝守护你!");

用户头像

极客good

关注

还未添加个人签名 2021.03.18 加入

还未添加个人简介

评论

发布
暂无评论
多线程详解第3讲:线程状态,感悟分享