《Java 병렬 프로그래밍의 예술》 독서 노트: 대기/알림 메커니즘
라인이wait()를 호출하면 이미 획득한 자물쇠를 방출합니다.동시에 Blocked 상태가 아닌 Waiting 상태로 돌아갑니다.다른 라인이 notify () 방법을 사용하고 자물쇠를 풀기를 기다려야만 현재 라인이wait () 방법에서 되돌아옵니다.알림만 보내는 것은 충분하지 않고, 알림을 보내는 라인의 자물쇠도 필요하다.
원서의 데모를 붙이고 약간의 수정을 했다.
/**
*
*/
package chapter04;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.concurrent.TimeUnit;
/**
* 6-11
*/
public class WaitNotify {
private static final SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
static boolean flag = true;
static Object lock = new Object();
public static void main(String[] args) {
Thread waitThread = new Thread(new Wait(), "WaitThread");
waitThread.start();
sleepSeconds(1);
Thread notifyThread = new Thread(new Notify(), "NotifyThread");
notifyThread.start();
}
static class Wait implements Runnable {
public void run() {
synchronized (lock) {
// , wait, lock
while (flag) {
try {
System.out.println(CuttentThreadName() + " flag is true. wait @ " + sdf.format(new Date()));
lock.wait();
System.out.println(CuttentThreadName() + " gained lock again. wait @ " + sdf.format(new Date()));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
// ,
System.out.println(CuttentThreadName() + " flag is false. running @ " + sdf.format(new Date()));
}
}
}
private static String CuttentThreadName() {
return Thread.currentThread().getName();
}
static class Notify implements Runnable {
@Override
public void run() {
// , lock Monitor
synchronized (lock) {
// lock , , lock ,
// lock ,WaitThread wait
System.out.println(CuttentThreadName() + " hold lock. notify @ " + sdf.format(new Date()));
lock.notifyAll();
flag = false;
sleepSeconds(5);
System.out.println(CuttentThreadName() + " is releasing lock @ " + sdf.format(new Date()));
}
//
synchronized (lock) {
System.out.println(CuttentThreadName() + " hold lock again. sleep @ " + sdf.format(new Date()));
sleepSeconds(5);
System.out.println(CuttentThreadName() + " is releasing lock @ " + sdf.format(new Date()));
}
}
}
private static void sleepSeconds(int timeout) {
try {
TimeUnit.SECONDS.sleep(timeout);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
출력 결과는 다음과 같습니다.
WaitThread flag is true. wait @ 20:58:32
NotifyThread hold lock. notify @ 20:58:33
NotifyThread is releasing lock @ 20:58:38
NotifyThread hold lock again. sleep @ 20:58:38
NotifyThread is releasing lock @ 20:58:43
WaitThread gained lock again. wait @ 20:58:43
WaitThread flag is false. running @ 20:58:43
출력 결과를 통해 우리는 몇 가지 문제를 발견할 수 있다.
1.NotifyThread에서 notifyAll () 방법을 호출한 후, WaitThread는wait () 방법에서 즉시 돌아오지 않습니다.이때 Notify Thread는 자물쇠를 풀지 않았기 때문이다.
2.프로그램 61줄, Notify Thread가 처음으로 자물쇠를 풀었지만Wait Thread는 무기력하여 이 자물쇠를 빼앗지 못하고 블락드 상태에 있었다.
3.67줄에 이르러서야 NotifyThread가 다시 자물쇠를 풀었고WaitThread가 자물쇠를 가져와서야 wait()에서 되돌아와 계속 실행했다.
4.루틴이wait() 방법에서 되돌아오는 전제는synchronized에 필요한 자물쇠를 얻는 것이다.
원서의 데모를 분석한 뒤 저와 같은 느낌을 받았는지 예전의 인식은 그런 too young too simple이었습니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.