CountDownLatch 멀티스레드 완료 대기
2108 단어 CountDownLatch
public class CountDownLatchExample {
public static void main(String[] args) {
final CountDownLatch latch = new CountDownLatch(2);
new Thread(new Runnable() {
@Override
public void run() {
System.out.println(" :" + System.currentTimeMillis());
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(" :" + System.currentTimeMillis());
latch.countDown();
}
}).start();
new Thread(new Runnable() {
@Override
public void run() {
System.out.println(" :" + System.currentTimeMillis());
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(" :" + System.currentTimeMillis());
latch.countDown();
}
}).start();
try {
latch.await();
System.out.println(" , " + System.currentTimeMillis());
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
실행 결과는 다음과 같습니다.
:1458950519770
:1458950519770
:1458950520784
:1458950520784
, 1458950520784
두 개의 하위 라인이 실행이 끝났을 때main 라인이 실행되기 시작하는 것을 볼 수 있습니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Java에서 CountDownLatch 사용법 해석CountDownLatch 클래스는 동기식 카운터로 구성할 때 int 파라미터를 전송합니다. 이 파라미터는 카운터의 초기 값입니다. countDown () 방법을 호출할 때마다 카운터가 1을 줄이고 카운터가 0보다 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.