《Java 병렬 프로그래밍의 예술》 독서 노트: 대기/알림 메커니즘

3498 단어
이 책을 보기 전에wait와notify에 대한 인식은 아마도wait를 호출하는 루트 A가 막힌 후에 다른 루트가 notify 방법을 호출하면 루트 A는 즉시wait 방법에서 되돌아온다.이 책을 보고 나서 자신의 인식이 너무 천박하다는 것을 발견했다...
라인이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이었습니다.

좋은 웹페이지 즐겨찾기