Contents

Views 12544 Comment 0
Atachment
Attachment '1'
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

싱글톤 패턴 간단 예제

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
No. Category Subject Author Date Views
373 Develop [js] IE에서 인쇄 설정 팁 hooni 2013.04.23 11946
372 Etc [php] 싸이월드 이미지 외부 링크 하기(php) hooni 2013.04.23 17621
371 System/OS [doc] 피쳐셀렉션(feature selection using..) 발표 자료 file hooni 2013.04.23 13530
370 System/OS [doc] 네트워크 장비와 라우터 설정 방법 발표 자료 file hooni 2013.04.23 15209
369 System/OS [windows] 인터넷 익스플로러(IE) 도구모음 표시줄에 아이콘 추가 file hooni 2013.04.23 19088
368 System/OS [windows] 종료, 재시작, 로그아웃 아이콘 만들기 hooni 2013.04.23 19079
367 System/OS [router] 설정과 기본 명령어들 모음 hooni 2013.04.23 16451
366 System/OS NAT와 DHCP에 대한 간단한 설명 hooni 2013.04.23 19151
365 System/OS [linux] 간단한 find 명령어 설명(업데이트 해야 함) hooni 2013.04.23 9943
364 Etc [flash] 맘에 드는 파이차트 file hooni 2013.04.23 13587
363 Develop [web] 웹 연동 프로그램 모음.. file hooni 2013.04.23 7961
362 System/OS [doc] TCP/IP 강의 자료 (html) file hooni 2013.04.23 11944
Board Pagination Prev 1 ... 63 64 65 66 67 68 69 70 71 72 ... 99 Next
/ 99