我有以下程序,我想让吸烟者等待代理的 3 个线程。我正在尝试使用 CountDown 闩锁来实现这一点。
public void runThreads(){
int numofTests;
Scanner in = new Scanner(System.in);
System.out.print("Enter the number of iterations to be completed:");
numofTests = Integer.parseInt(in.nextLine());///Gets the number of tests from the user
Agent agent = new Agent();
Smoker Pam = new Smoker ("paper", "Pam");
Smoker Tom = new Smoker ("tobacco", "Tom");
Smoker Matt = new Smoker ("matches", "Matt");
for(int i = 0; i < numofTests; i++){ //passes out as many rounds as the user specifies
Pam.run();
Tom.run();
Matt.run();
agent.run();
}
出于某种原因,当我使用以下代码运行 Pam.run 时,它只是在latch.await 上冻结,而我的其余线程不运行。所以我的问题是我怎样才能正确地做到这一点,以便前 3 名吸烟者等待latch.countdown(); 由代理线程调用。
public class Smoker implements Runnable{
String ingredient; //This is the one ingredient the smoker starts out with
String name;
public static CountDownLatch latch = new CountDownLatch(1);
int numOfSmokes = 0; //Total number of cigs smoker smoked;
public Smoker(String ingredient1, String Name)
{
ingredient1 = ingredient;
name = Name;
}
public void run(){
try {
System.out.println(this.name + " waits on the table...");
latch.await();///waits for agent to signal that new ingredients have been passed out
} catch(InterruptedException ex) {
Thread.currentThread().interrupt();
}
System.out.println(this.name + " stops waiting and checks the table...");
checkTable();
}