线程状态
线程停止
-
推荐线程自己停止下来
-
建议使用一个标志位进行终止变量,当flag=false,则终止线程运行
package com.Spp.StopDemo;
// 测试stop
//1. 建议线程正常停止-->利用次数,不建议死循环
//2. 建议使用标志位-->设置一个标志位
//3. 不要使用stop或者destroy等过时或者JDK不建议使用的方法
public class TestStop implements Runnable{
//1. 设置一个标志位
private boolean flag = true;
线程休眠
-
sleep(时间)指定当前线程阻塞的毫秒数;
-
sleep存在异常InterruptedException;
-
sleep时间达到后线程进入就绪状态;
-
sleep可以模拟网络延时,倒计时等;
-
每一个对象都有一个锁,sleep不会释放锁
package com.Spp.state;
import java.text.SimpleDateFormat;
import java.util.Date;
public class TestSleep02 {
//模拟倒计时
public static void tenDown() throws InterruptedException {
int ten = 10;
while(true){
Thread.sleep(1000);
System.out.println(ten--);
if(ten <= 0){
break;
}
}
}
public static void main(String[] args) {
//打印当前系统时间
Date startTime = new Date(System.currentTimeMillis());//获取系统当前时间
while(true){
try {
Thread.sleep(1000);
System.out.println(new SimpleDateFormat("HH:mm:ss").format(startTime));
startTime = new Date(System.currentTimeMillis());//更新当前时间
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
线程礼让
-
礼让线程,让当前正在执行的线程暂停,但不阻塞
-
将线程从运行状态转为就绪状态
-
让CPU重新调度,礼让不一定成功
package com.Spp.state;
public class TestYield {
public static void main(String[] args) {
MyYield muYield = new MyYield();
new Thread(muYield,"a").start();
new Thread(muYield,"b").start();
}
}
class MyYield implements Runnable{
线程强制执行
-
Join合并线程,待此线程执行完成后,再执行其他线程,其他线程阻塞
package com.Spp.state;
public class TestJoin implements Runnable{
线程状态
线程可以处于以下状态之一:
package com.Spp.state;
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();
System.out.println(state);
// 观察启动后
thread.start();// 启动线程
state = thread.getState();
System.out.println(state);
while(state != Thread.State.TERMINATED){// 只要线程不终止,就一直输出状态
Thread.sleep(100);
state = thread.getState();//更新线程状态
System.out.println(state);
}
}
}