1

我正在用java进行线程编程,我遇到了一个问题,我必须一个接一个地执行2个线程。下面是简要概括我的问题的代码片段。

class A{
  //default execute method of this class
  String a="thread1";
  String b="thread2";
  public void execute(){
    if(a=="thread1"){
       CreateThread1 t1 = new CreateThread1(this);
       t1.call();
    }
    else if(b=="thread2") {
      CreateThread1 t2 = new CreateThread1(this);
       t2.call();
    }
  }//end of execute
  public void UpdateUI(){
    try{
      Display.getDefault.asyncExec(new Runnable(){
        public void run(){
            //ui update code here
        }
      });
    }
    catch(SWTException e){
    }
  }   
}

Class CreateThread1{
    private A object;
    public CreateThread1(A object){
      this.object=object
    }
    public void call(){
      Thread t = new Thread(this);
      t.start();
    }
    public void run(){ 
      //business logic here 
       object.UpdateUI();//updates UI 
    }
}

这里的 A 类是显示线程任务进度的用户界面类,在上面的代码中,即使 CreateThread1 没有被杀死,CreateThread1 也会启动,C​​reateThread2 也会启动,我希望只有在 CreateThread1 完成任务后才触发 CreateThread2。这可能吗?有任何想法吗?

4

4 回答 4

3

您可以使用FixedThreadPool大小为 1 的 a。这将保证顺序执行。

ExecutorService executor = Executors.newFixedThreadPool(1);
executor.submit(runnable1);
executor.submit(runnable2);
executor.shutdown();
executor.awaitTermination(10, TimeUnit.SECONDS); //waits until both runnables have finished.

编辑

ExecutorService 在内部使用同步结构,因此您可以放心地假设 runnable1 将在 runnable2 之前运行。

于 2012-04-11T16:47:28.220 回答
1

Thread#join,虽然我更喜欢使用java.util.concurrent包中的类。

于 2012-04-11T16:46:09.533 回答
1

我很快就阅读了您的问题,但您可能需要的是 join() 您看过 Java 并发教程吗? http://docs.oracle.com/javase/tutorial/essential/concurrency/join.html

于 2012-04-11T16:46:31.927 回答
0

您可以将ThreadPoolExecutorSynchronousQueue一起使用。这在 ThreadPoolExecutor 的文档中有所描述。

于 2012-04-11T16:45:34.063 回答