礼让线程
礼让线程 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); } } }
最后,关注【码上加油站】微信公众号后,有疑惑有问题想加油的小伙伴可以码上加入社群,让我们一起码上加油吧!!!