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

多线程1

时间:2014-12-12 18:35:52      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   for   on   div   

1 判断单线程:在程序中如果能用一条线穿过所有调用方法,就是单线程

package lianxi1;

class SubThread extends Thread{
    public void run(){
    for(int i=1;i<=50;i++){
        try {
            Thread.currentThread().sleep(1000);  //使当前线程暂停,不丢失控制权
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        System.out.println(Thread.currentThread().getName()+" "+Thread.currentThread().getPriority()+" "+i);
    }
    }
}
public class TestThread {

    public static void main(String[] args) {
        SubThread sub = new SubThread();
        sub.setPriority(Thread.MIN_PRIORITY);
        sub.start();
        for(int i=1;i<=50;i++){
            System.out.println(Thread.currentThread().getName()+" "+Thread.currentThread().getPriority()+" "+i);
//            if(i%5==0){
//                Thread.currentThread().yield();  // yield方法暂停当前执行的线程,转到其他线程
//            }
            if(i%10==0){
                try {
                    sub.join();  //等待该线程终止
                } catch (InterruptedException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        }
        System.out.println(sub.isAlive());

    }

}

多线程1

标签:style   blog   io   ar   color   sp   for   on   div   

原文地址:http://www.cnblogs.com/yjtm53/p/4160170.html

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