package state; //测试join方法//想象为插队 public class TestJoin implements Runnable { @Override public void run() { for (int i = 0; i < 500; i++) { System.out.println("线程vip来了"+i); } } public static void main(String[] args) { TestJoin testJoin=new TestJoin(); Thread thread=new Thread(testJoin); thread.start(); //主线程 for (int i = 0; i < 1000; i++) { if (i==200){ try { thread.join();//插队 } catch (InterruptedException e) { e.printStackTrace(); } } System.out.println("main"+i); } } }
线程插队--Join方法
最新推荐文章于 2023-08-21 08:15:00 发布