Contents

조회 수 12544 댓글 0
Atachment
첨부 '1'
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

싱글톤 패턴 간단 예제

import java.util.HashMap;

class Singleton {
    private static HashMap map = new HashMap();
    //private static Logger logger = Logger.getRootLogger();

    protected Singleton() {
        // Exists only to thwart instantiation
    }

    public static synchronized Singleton getInstance(String classname) {
        Singleton singleton = (Singleton)map.get(classname);
        if(singleton != null) {
            System.out.println("got singleton from map: " + singleton);
            return singleton;
        }
        try {
            singleton = (Singleton)Class.forName(classname).newInstance();
        }
        catch(ClassNotFoundException cnf) {
            System.out.println("Couldn't find class " + classname);     
        }
        catch(InstantiationException ie) {
            System.out.println(
            "Couldn't instantiate an object of type " + classname);
        }
        catch(IllegalAccessException ia) {
            System.out.println("Couldn't access class " + classname);     
        }
        map.put(classname, singleton);
        System.out.println("created singleton: " + singleton);
        return singleton;
    }
}

class SingletonTest {
    public static void main(String[] args) {
    }
}


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
769 Develop git 브런치 배우기 (링크) hooni 2013.07.09 22079
768 Develop GCM 사용하기 3 (JSP로 GCM 푸시 서버 만들기) 4 file hooni 2013.07.06 27129
767 Develop GCM 사용하기 2 (단말에 GCM 구현하기) file hooni 2013.07.06 24652
766 Develop [android] GCM 사용하기 1 (GCM 서비스 신청하기) file hooni 2013.07.06 52518
765 Develop [ios] APNS 샘플 코드.. secret hooni 2013.06.27 0
764 Develop [ios] APNS 클라이언트 구현 (pdf) file hooni 2013.06.27 16990
763 Develop [ios] PHP로 APNS 프로바이더~ file hooni 2013.06.27 17940
762 Etc 영어 관련 토렌트 secret hooni 2013.06.25 0
761 Etc 영어 아주 쉬운 영작문 강의 01~60 secret hooni 2013.06.25 0
760 Etc 성문 종합 영어 정리된 pdf 파일 file hooni 2013.06.25 33014
759 Develop 프로그래밍에서 foo, bar 함수의 유래 file hooni 2013.06.25 22884
758 Etc 영작 연습을 위한 실용영어 문장 1001개 (1~500) hooni 2013.06.21 32019
Board Pagination Prev 1 ... 30 31 32 33 34 35 36 37 38 39 ... 99 Next
/ 99