码迷,mamicode.com
首页 > 编程语言 > 详细

Java中join的使用

时间:2016-02-18 18:01:29      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

join用于主线程等待子线程运行完毕它的run方法,再继续执行下面的代码。

join() = join(0),主线程无限等待子线程执行完毕。

join(n milliseconds),主线程只等待n毫秒,n毫秒后无论子线程是否执行完毕,主线程都将继续执行下面的代码。

package com.jack.test;

public class TestJoin implements Runnable{
    public static int a = 0;
    
    public void run(){
        try{
            Thread.sleep(1100);
            for(int i = 0; i < 5; i++){
                a = a +1;
            }
            System.out.println("after for loop, a="+a);
        }catch(InterruptedException e){
            e.printStackTrace();
        }
        
    }
    
    public static void main(String[] args) throws InterruptedException{
        Runnable r = new TestJoin();
        Thread t = new Thread(r);
        t.start();
        t.join();
        System.out.println(a);
    }

}

 

Java中join的使用

标签:

原文地址:http://www.cnblogs.com/2youngnot2learn/p/5198599.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!