싱글톤 썸네일형 리스트형 [Design Pattern: 생성] 1. Singleton 목적동일한 인스턴스를 여러 객체에서 사용하고 싶은 경우 사용함즉, 모든 객체에서 사용하는 Global 전역 변수 인스턴스 같은 개념 **여러 객체에서 사용하는 특징에 따라 synchronized 해야 스레드에 안전함예제 public class Singleton { private static Singleton instance = null; // Closed Constructor private Singleton() {}; // Singleton Constructor public static synchronized Singleton getInstance() { if (instance == null) { instance = new Singleton(); } return instance; } } 동기화 때문에 성.. 더보기 이전 1 다음