Thread.sleep() 和 Thread.yield() 区别

Thread.sleep() 和 Thread.yield() 区别

thread

  1. Thread.yield()

    api中解释: 暂停当前正在执行的线程对象,并执行其他线程。
    注意:这里的其他也包含当前线程,所以会出现以下结果。

public class Test extends Thread {   
  public static void main(String[] args) {   
    for (int i = 1; i <= 2; i++) {   
      new Test().start();   
    }   
  }   
  
  public void run() {   
    System.out.print("1");   
    yield();   
    System.out.print("2");   
  }   
}  
输出结果: 1122 或者 1212

2. Thread.sleep(long millis)

 > 解释:使当前线程暂停millis所指定的毫秒,转到执行其它线程。
上一篇:(四)-对象内存的分配策略


下一篇:ExtJs下拉框组件Ajax方式显示