중요 태그

2018년 7월 28일 토요일

안드로이드 싱글턴 ( Singleton ) 소스

2018-07-29

안드로이드 자바 싱글턴 ( Singleton )


소프트웨어 디자인 패턴 중에 싱글턴입니다. 사실 싱글톤으로 알고 있었는데 싱글턴이었다는 ㅠㅠ 아래 소스 코드 참조하시면 됩니다.


public class Singleton {
    private  static Singleton instance;

    private Singleton() {
    }

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

댓글 없음: