美文网首页
join方法

join方法

作者: 秋秋_6403 | 来源:发表于2020-05-10 22:11 被阅读0次
    join

    `

    public class TestThreadJoin  implements Runnable{
    
        @Override
        public void run() {
            for(int i = 0; i< 1000;i++){
                System.out.println("子线程执行次数"+i);
            }
        }
    
        public static void main(String[] args) {
            TestThreadJoin threadJoin = new TestThreadJoin();
            Thread thread = new Thread(threadJoin);
            thread.start();
            for(int i = 0; i< 10;i++){
                if(5 == i){
                    try {
                        thread.join();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
                System.out.println("主线程执行次数"+i);
    
            }
    
        }
    }
    
    

    相关文章

      网友评论

          本文标题:join方法

          本文链接:https://www.haomeiwen.com/subject/siasnhtx.html