其他分享
首页 > 其他分享> > 线程强制执行_join

线程强制执行_join

作者:互联网

线程强制执行_join

测试案例:

package multithreading;

// 测试Join方法
// 想象为插队
public class TestJoin implements Runnable {

    @Override
    public void run() {
        for (int i = 0; i < 500; 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);
        }
    }
}

插队线程执行完后,继续执行主线程

标签:TestJoin,强制执行,thread,插队,线程,join,public
来源: https://www.cnblogs.com/CH0701/p/15037917.html