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

线程的礼让

时间:2014-08-06 17:30:21      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:style   color   使用   strong   for   art   ar   new   

在线程操作中,可以使用yield()方法将一个线程的操作暂时让给其他线程执行:

class MyThread17 implements Runnable {
    public void run() {
        for (int i = 0; i < 5; i++) {
            System.out.println(Thread.currentThread().getName() + " run---->"
                    + i);
            if (i == 3) {
                System.out.println("Thread yield:");
                Thread.currentThread().yield();
            }
        }
    }
}

public class ThreadYieldDemo {
    public static void main(String[] args) {
        MyThread17 my = new MyThread17();
        Thread t1 = new Thread(my, "THread A");
        Thread t2 = new Thread(my, "THread B");
        t1.start();
        t2.start();
    }
}

线程的礼让,布布扣,bubuko.com

线程的礼让

标签:style   color   使用   strong   for   art   ar   new   

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

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