多线程的本质

Posted 成风魄郎

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了多线程的本质相关的知识,希望对你有一定的参考价值。

1. Thread.yield():

    api中解释: 暂停当前正在执行的线程对象,并执行其他线程。

    注意:这里的其他也包含当前线程,所以会出现以下结果。

 

  1. public class Test extends Thread {   
  2.   public static void main(String[] args) {   
  3.     for (int i = 1; i <= 2; i++) {   
  4.       new Test().start();   
  5.     }   
  6.   }   
  7.   
  8.   public void run() {   
  9.     System.out.print("1");   
  10.     yield();   
  11.     System.out.print("2");   
  12.   }   
  13. }  

    输出结果: 1122 或者 1212

 

2. Thread.sleep(long millis):

 

     解释:使当前线程暂停millis所指定的毫秒,转到执行其它线程。

 

以上是关于多线程的本质的主要内容,如果未能解决你的问题,请参考以下文章

多线程CreateThread与_beginthreadex本质区别

多线程的本质

《C#本质论》读书笔记(18)多线程处理

b/w生产者/消费者和写/读多线程建模的本质区别是啥?

python3多线程应用详解(第一卷:线程的本质概念)

第七十四课多线程间的同步