We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 693208b + 26b2043 commit bd68fe6Copy full SHA for bd68fe6
Java相关/Multithread/AQS.md
@@ -336,7 +336,8 @@ public class CyclicBarrierExample2 {
336
public static void test(int threadnum) throws InterruptedException, BrokenBarrierException {
337
System.out.println("threadnum:" + threadnum + "is ready");
338
try {
339
- cyclicBarrier.await(2000, TimeUnit.MILLISECONDS);
+ /**等待60秒,保证子线程完全执行结束*/
340
+ cyclicBarrier.await(60, TimeUnit.SECONDS);
341
} catch (Exception e) {
342
System.out.println("-----CyclicBarrierException------");
343
}
0 commit comments