-1

我有一个由 4 个进程组成的程序,所有进程都需要一个接一个地运行。

草图是这样的:

第一个进程 - 在多线程中 - 完成他的工作提供数据输入

第二个进程 - 在多线程中 - 完成了他的工作提供了一些数据

第三个进程 - 在多线程中 - 完成了他的工作提供了一些数据

第 4 进程 - 在多线程中 - 完成他的工作提供数据输出

请注意,为了让一个进程在他需要完成之前启动一个进程!

在代码草图中看起来像这样:

public class MainClass{

public static void main(){
    addThreadPool();
}

public static void addThreadPool(){

ScheduledThreadPoolExecutor eventPool = new ScheduledThreadPoolExecutor(5);

eventPool.sheduleAtFixedRate(new FirstProcess(),0,5, TimeUnits.SECONDS);
eventPool.sheduleAtFixedRate(new SecondProcess(),5,10, TimeUnits.SECONDS);
eventPool.sheduleAtFixedRate(new ThirdProcess(),15,20, TimeUnits.SECONDS);
eventPool.sheduleAtFixedRate(new ForthProcess(),20,25, TimeUnits.SECONDS);


try{
   Thread.sleep(20000);
}
catch(InterruptedException e){
System.err.println(e.getMessaage());
}
}


static class FirstProcess implements Runnable {
ReentrantLock lock = new ReentrantLock();

public void run(){
lock.lock();

System.out.println("FirstProcess started/finished");    

lock.unlock();
}

}



static class SecondProcess implements Runnable {
ReentrantLock lock = new ReentrantLock();

public void run(){
lock.lock();

System.out.println("SecondProcess started/finished");    

lock.unlock();
}

}

static class ThirdProcess implements Runnable {
ReentrantLock lock = new ReentrantLock();

public void run(){
lock.lock();

System.out.println("ThirdProcess started/finished");    

lock.unlock();
}

}

static class ForthProcess implements Runnable {
ReentrantLock lock = new ReentrantLock();

public void run(){
lock.lock();

System.out.println("ForthProcess started/finished");    

lock.unlock();
}

}

我希望有人回答这是简单的多线程问题。

请使用 ScheduledThreadPoolExecutor 提供帮助!

4

1 回答 1

0

将 eventPool 传递给 Second、Third 和 FourthProcess 的构造函数。让 FirstProcess 创建并安排 SecondProcess 等。

可能有更好的方法可以做到这一点,我不会对答案感到满意,但它应该可以工作。

于 2013-09-13T17:34:13.313 回答