Contents

Views 11629 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
601 Develop [ios] In App Purchase 개발 hooni 2013.11.20 9293
600 Develop [ios] iOS In App Purchase 코드 부분 샘플 2 hooni 2013.11.20 11329
599 Develop [ios] iOS In App Purchase 코드 부분 샘플 1 hooni 2013.11.20 11794
598 Develop [ios] iOS In App Purchase #2 (코드 구현) file hooni 2013.11.20 13803
597 Develop [ios] iOS In App Purchase #1 (코드 구현 전 웹 설정 작업) file hooni 2013.11.20 14551
596 Develop [ios] iphone SetDeviceOrientation 화면 강제 회전 hooni 2013.11.20 18510
595 Develop [js] window.open() 속성 사용 방법 hooni 2013.11.18 13632
594 Develop [php] php5.3부터는 eregi()대신 preg_match()를 사용 hooni 2013.11.18 12525
» Develop [java] 초간단 싱글톤(Singleton) 패턴 샘플 코드 file hooni 2013.11.18 11629
592 Develop [python] 파이썬 공부하는 사이트~ hooni 2013.11.12 10883
591 Develop [js] 웹페이지에서 특정 엘리먼트 드래그, 복사, 컨텍스트메뉴, 키보드 막기 hooni 2013.11.04 30126
590 Develop [php] XE 에서 php 구문 사용하기 (XE 템플릿에서) hooni 2013.10.31 19533
Board Pagination Prev 1 ... 16 17 18 19 20 21 22 23 24 25 ... 71 Next
/ 71