자바 단일 모드 기초

1608 단어 자바
1.개념:특정한 유형의 인 스 턴 스 만 확보
2.이론 실현:
  (1) 구조 방법 을 private 로 한정 하여 외부 에서 예화 되 는 것 을 피 했다.
(2)유일한 접근(가 져 오기)인 스 턴 스 를 제공 하 는 방법;
 1 public class Singleton {

 2   private static Singleton uniqueInstance = null;

 3   private Singleton() {}

 4   public static Singleton getInstance() {

 5     if (uniqueInstance == null) {

 6       uniqueInstance = new Singleton();

 7     }

 8     return uniqueInstance;

 9   }

10 }

좋은 웹페이지 즐겨찾기