스레드 동시 사용 도구 -- CyclicBarrier
2361 단어 Cyclicbarrier
다음은 샘플 프로그램입니다.
ExecutorService service = Executors.newCachedThreadPool();
final CyclicBarrier cyclicBarrier = new CyclicBarrier(3);
for(int i = 0;i<3;i++){
Runnable runnable = new Runnable(){
Random random = new Random();
@Override
public void run() {
try {
Thread.sleep(random.nextInt(5000));
System.out.println("point 1:"+Thread.currentThread().getName()+" execute complate.");
cyclicBarrier.await();
} catch (InterruptedException | BrokenBarrierException e) {
e.printStackTrace();
}
try {
Thread.sleep(random.nextInt(5000));
System.out.println("point 2:"+Thread.currentThread().getName()+" execute complate.");
cyclicBarrier.await();
} catch (InterruptedException | BrokenBarrierException e) {
e.printStackTrace();
}
try {
Thread.sleep(random.nextInt(5000));
System.out.println("point 3:"+Thread.currentThread().getName()+" execute complate.");
cyclicBarrier.await();
} catch (InterruptedException | BrokenBarrierException e) {
e.printStackTrace();
}
try {
Thread.sleep(random.nextInt(5000));
System.out.println("point 4:"+Thread.currentThread().getName()+" execute complate.");
cyclicBarrier.await();
} catch (InterruptedException | BrokenBarrierException e) {
e.printStackTrace();
}
}
};
service.execute(runnable);
//service.shutdown();
}
결과:point 1:pool-1-thread-3 execute complate.
point 1:pool-1-thread-2 execute complate.
point 1:pool-1-thread-1 execute complate.
point 2:pool-1-thread-2 execute complate.
point 2:pool-1-thread-1 execute complate.
point 2:pool-1-thread-3 execute complate.
point 3:pool-1-thread-3 execute complate.
point 3:pool-1-thread-1 execute complate.
point 3:pool-1-thread-2 execute complate.
point 4:pool-1-thread-1 execute complate.
point 4:pool-1-thread-2 execute complate.
point 4:pool-1-thread-3 execute complate.
에서 볼 수 있듯이 어느 점에 도달하는 순서가 고정되지 않을 수 있지만 한 라인이 Point1에 도달했을 때 다른 라인은 Point2에 도달했다. 즉, 모두가 한 점에 도달한 후에야 계속 아래로 집행할 수 있다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다 중 스 레 드 순환 출력 문제 (1)자바 는 이미 4 가지 스 레 드 동기 화 도구 가 있 습 니 다. Cyclic Barrier 는 일부 스 레 드 가 특정한 상태 에 이 르 렀 을 때 함께 실행 하기에 적합 합 니 다. 이론 은 매우 간단 하고 코...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.