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

线程的强制运行

时间:2014-08-06 11:35:51      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:style   color   java   使用   io   for   art   ar   

在java运行时至少会启动两个线程,一个是main线程,一个是垃圾收集线程。

 

在线程操作中,可以使用join()方法让一个线程强制运行,线程强制运行期间,其他线程无法运行,必须等待此线程完成之后才可以继续执行:

class myThread10 implements Runnable{

    public void run() {
        for(int i=0;i<50;i++){
            System.out.println(Thread.currentThread().getName()+" Runing "+i);
        }
       
    }
   
}
public class ThreadJoinDemo {
    public static void main(String[] args) {
        myThread10 m=new myThread10();
        Thread thread=new Thread(m, "Thread v");
        thread.start();
        for(int i=0;i<50;i++){
            if(i>10){
                try {
                    thread.join();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }
            System.out.println("Main thread running:"+i);
        }
    }

}

线程的强制运行,布布扣,bubuko.com

线程的强制运行

标签:style   color   java   使用   io   for   art   ar   

原文地址:http://www.cnblogs.com/vonk/p/3893997.html

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