线程强制执行_join
- join合并线程,待此线程执行完成后,再执行其他线程,其他线程堵塞
package com.thread.state;
//测试jion方法
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 < 100; i++) {
if (i==20) {
thread.join();//插队
}
System.out.println("main"+i);
}
}
}