线程强制执行——join

package com.thread;
//join合并线程,待此线程执行完成后,在执行其他线程,其他线程堵塞
//可以想象成插队
//测试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);
        }
    }
}

posted @ 2022-04-28 17:42  好12  阅读(23)  评论(0)    收藏  举报