디자인 모드 노트 - 단일 모드

7568 단어 디자인 모드
단일 모드: 하나의 인 스 턴 스 만 있 고 전체 방문 점 에 접근 하 는 방법 을 제공 합 니 다.
Singleton 클래스 는 getInstance 방법 을 정의 하여 고객 이 유일한 인 스 턴 스 에 접근 할 수 있 도록 합 니 다.getInstance 는 정적 인 방법 으로 자신의 유일한 인 스 턴 스 를 만 드 는 것 을 책임 집 니 다.
public class Singleton {

	private static Singleton instance;

	private Singleton() {
		super();
	}
	
	public static Singleton getInstance() {
		if(instance == null) {
			instance = new Singleton();
		}
		return instance;
	}
}

클 라 이언 트 코드
public static void main(String[] args) {
		// TODO Auto-generated method stub

		Singleton s1 = Singleton.getInstance();
		Singleton s2 = Singleton.getInstance();
		----         
		if(s1 == s2) {
			System.out.println("          ");
		}
}

단일 모드 는 다 중 스 레 드 환경 에서 여러 개의 인 스 턴 스 를 만 들 수 있 습 니 다. 두 가지 해결 방법 이 있 습 니 다. 이중 검사 잠 금 과 정적 초기 화 (굶 주 린 식)
이중 검사 자물쇠
public class Singleton {

	private static Singleton instance;

	private Singleton() {
		super();
	}
	
	public static Singleton getInstance() {
		if(instance == null) {
			synchronized (Singleton.class) {
				if(instance == null) {
					instance = new Singleton();
				}
			}
		}
		
		return instance;
	}
}

정적 초기 화 (굶 주 린 식)
public class Singleton {

	private static Singleton instance = new Singleton();

	private Singleton() {
		super();
	}
	
	public static Singleton getInstance() {
		return instance;
	}
}

이러한 정적 초기 화 방식 은 자신 이 불 러 올 때 자신 을 예화 하 는 것 이 며, 다 중 스 레 드 접근 의 안전성 문제 가 존재 하지 않 습 니 다.

좋은 웹페이지 즐겨찾기