Contents

Views 11627 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
217 Develop [c] home env stack overflow hooni 2003.04.23 11544
216 Develop [c] 시간 관련 함수 설명과 예제.. file hooni 2003.04.23 11547
215 Develop [ios] Background 에서 네트워크 사용 file hooni 2013.07.22 11591
214 Develop [c] 도스 공격(DoS Attack) 프로그램 file hooni 2013.04.23 11597
» Develop [java] 초간단 싱글톤(Singleton) 패턴 샘플 코드 file hooni 2013.11.18 11627
212 Develop [php] 쉘에서 실행할 때 인수(파라미터) 받기.. hooni 2003.04.23 11644
211 Develop [c++] String Tokenizer (나중에 c 코드로 변경해서 사용할 것) hooni 2013.04.23 11724
210 Develop [vbs] CD롬 뱉는 스크립트.. hooni 2003.04.23 11736
209 Develop [ios] UIWebView 쿠키 유지 hooni 2014.01.16 11747
208 Develop [php] whois정보 조회 프로그램 hooni 2003.04.23 11772
207 Develop [php] 배열 관련 함수 설명 ㅎㅎ hooni 2003.04.23 11778
206 Develop [ios] iOS In App Purchase 코드 부분 샘플 1 hooni 2013.11.20 11793
Board Pagination Prev 1 ... 48 49 50 51 52 53 54 55 56 57 ... 71 Next
/ 71