实例:
package com.lurenj.thread; //测试线程停止 /* 1.建议线程正常停止--->利用次数,不建议死循环 2.建议用标志位--->设置一个标志位 3.不要使用stop或destroy等过时或者JDK不建议使用的方法 */ public class TestStop implements Runnable{ //1.线程中定义线程体使用的标志位 private boolean flag = true; @Override public void run() { //2.线程体使用该标识 while (flag){ System.out.println("run... Thread"); } } //3.对外提供方法停止线程,转换标志位 public void stop(){ this.flag = false; } public static void main(String[] args) { TestStop testStop = new TestStop(); new Thread(testStop).start(); for (int i = 0; i < 1000; i++) { System.out.println("main" + i); if (i == 900){ //调用stop方法切换标志位,让线程停止 testStop.stop(); System.out.println("run... Thread线程停止了!"); } } } }
实例1:打印当前系统时间
package com.lurenj.thread; import java.text.SimpleDateFormat; import java.util.Date; public class TestSleep3 { 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(); } } } }
实例2:模拟倒计时
package com.lurenj.thread; public class TestSleep2 { public static void main(String[] args) { try { tenDown(); } catch (InterruptedException e) { e.printStackTrace(); } } //模拟倒计时 public static void tenDown() throws InterruptedException{ int num = 10; while (true){ Thread.sleep(1000); System.out.println(num--); if (num <= 0){ break; } } } }
package com.lurenj.thread; //测试线程礼让,礼让不一定成功 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() + "线程停止执行"); } }
实例:主线程和子线程在i==200之前是并行的,200后将优先执行完join方法带领的子线程然后继续执行主线程
package com.lurenj.thread; //测试join方法,可理解为插队方法 public class TestJoin implements Runnable{ @Override public void run() { for (int i = 0; i < 100; 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 < 1000; i++) { if (i == 200){ thread.join();//插队 } System.out.println("main" + i); } } }
Thread.State 线程状态,线程可以处于一下状态之一:
NEW
尚未启动的线程处于此状态
RUNNABLE
在Java虚拟机中执行的线程处于此状态
BLOCKED
被阻塞等待监视器锁定的线程处于此状态
WAITING
正在等待另一个线程执行特定动作的线程处于此状态
TIMED_WAITING
正在等待另一个线程执行动作达到指定等待时间的线程处于此状态
TERMINATED
已退出的线程处于此状态
一个线程可以在给定时间点处于一个状态。这些状态是不反映任何操作系统线程状态的虚拟机状态
死亡状态的线程不能重写被启动,否则会报错。
package com.lurenj.thread; //观测测试线程的状态 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);//RUN while (state != Thread.State.TERMINATED){//只要线程不终止,就持续输出线程状态 Thread.sleep(100); state = thread.getState();//更新线程状态 System.out.println(state); } } }