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

礼让线程

时间:2017-02-17 19:01:05      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:start   string   bsp   int   out   run   eth   end   log   

礼让线程 yield让出cpu

package com.loaderman.threadmethod;


public class Demo_Yield {


/**

* yield让出cpu礼让线程

*/

  public static void main(String[] args) {

    new MyThread().start();

    new MyThread().start();

  }


}


class MyThread extends Thread {

  public void run() {

    for(int i = 1; i <= 1000; i++) {

      if(i % 10 == 0) {

          Thread.yield(); //让出CPU

      }
      
    System.out.println(getName() + "..." + i);

    }
  
  }

}

 

礼让线程

标签:start   string   bsp   int   out   run   eth   end   log   

原文地址:http://www.cnblogs.com/loaderman/p/6411152.html

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