Thread.sleep() 和 Thread.yield() 区别
Posted 冰花ぃ雪魄
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Thread.sleep() 和 Thread.yield() 区别相关的知识,希望对你有一定的参考价值。
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所指定的毫秒,转到执行其它线程。
以上是关于Thread.sleep() 和 Thread.yield() 区别的主要内容,如果未能解决你的问题,请参考以下文章
C#中的Task.Delay()和Thread.Sleep()区别
使用 boost::this_thread::sleep_for() 和常规 sleep() 函数有啥区别?