일례 의 최 우선 표기 법
360 단어 디자인 모드
정적 내부 클래스
class Singleton {
// , new
private Singleton() {
}
// ,
private static class LazyClass {
private final static Singleton INSTANCE = new Singleton();
}
//
public static Singleton getInstance() {
return LazyClass.INSTANCE;
}
}