线程的礼让

线程的礼让
线程礼让是指当前正在运行的线程退出运行状态,暂时将运行权让给优先级相同或更高的线程。

调用yield()方法实现礼让,他会将当前程序转到就绪状态。

yield()方法不抛出任何异常。

class Test1 implements Runnable{
    public void run(){
    for(int i = 1 ;i <= 5 ;i++){
    System.out .println("running thread: " + Thread.currentThread().getName() + ", i = " + i);
    Thread.currentThread ().yield();
    }
    }
}
class Test2 implements Runnable{
    public void run(){
    for(int i = 1 ;i <= 5 ;i++){
     System.out .println("running thread: " + Thread.currentThread().getName() + ", i = " + i);
    }
    }
}
public class ThreadDemo11{
    public static void main (String[] args){
    Test1 t1 = new Test1();
    Thread th1 = new Thread(t1 ,"Thread-1");
    Test2 t2 = new Test2();
    Thread th2 = new Thread(t2 ,"Thread-2");
    th1.start ();
    th2.start ();
   }
}

                        技术分享

从理论上,t1线程运行的几率要小于t2线程,因为t1总是让其它线程先执行




郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。