java join 多线程顺序执行

原创
2015/10/30 12:34
阅读数 487
AI总结
  public static void main(String[] args) throws InterruptedException {

        final List<Thread> threads = new ArrayList<Thread>();
        for(int i=0;i<100;i++){
            class A extends Thread{
                int i ;
                public A(int i){
                    this.i = i;
                }
                @Override
                public void run() {
                    try {
                        Thread.sleep(100);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    System.out.println("thread " + i);
                }
            }
            threads.add(new A(i));
        }
        //倒叙
        Collections.reverse(threads);
        
        for(int i=99;i>=0;i--){
            threads.get(i).start();
            if(i!=0){
                threads.get(i).join();
            }
        }
    }

关键点:

  1. 线程执行后才能join

  2. 先运行后面的。

展开阅读全文
加载中
点击引领话题📣 发布并加入讨论🔥
0 评论
4 收藏
0
分享
AI总结
返回顶部
顶部