Java线程插队
Posted outxiao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java线程插队相关的知识,希望对你有一定的参考价值。
当某个线程中调用其它线程的join()方法时,调用的线程将被阻塞,直到被join()方法加入的线程执行完成后才会继续运行。
示例:
public class ThreadJoin { public static void main(String[] args) throws InterruptedException { Thread thread = new Thread(new EmergencyThread(),"DeputyThread"); thread.start(); for(int i = 0 ;i < 50 ;i++) { System.out.println(Thread.currentThread().getName()+" is outputting :"+i); if(i == 10) { System.out.println("DeputyThread jump a queue"); thread.join(); } Thread.sleep(1000); } } } class EmergencyThread implements Runnable{ @Override public void run() { // TODO Auto-generated method stub for(int i = 0;i < 50;i++) { System.out.println(Thread.currentThread().getName()+" is outputting :"+i); try { Thread.sleep(1000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } }
以上是关于Java线程插队的主要内容,如果未能解决你的问题,请参考以下文章