Recently I learned CyclicBarrier, but here's a question:
Code:
public class Main {
public static CyclicBarrier c;
public static void main(String[] agrs){
int threadsCount = 5;
c = new CyclicBarrier(threadsCount + 1);
// make 5 A threads to run
}
}
public class A implements Runnable {
public void run(){
// do something
Main.c.await();
// do something
}
}
In about code, I wonder that why I must initialize CyclicBarrier by (threadsCount + 1) but not (threadsCount), since I never invoke await() in the main method?
threadsCountthreads, your code won't work because the number of Threads callingawait()must be equal to the number of parties in the CyclicBarrier! You must be doing something wrong in the code you omitted. BTW: You did ask the same question yesterday, why was that deleted? – Boris Mar 6 '11 at 8:01