Contents

조회 수 12550 댓글 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) {
    }
}


?

  1. [unix] 날짜 관련 쉘 명령어 (특정일 또는 +-시간, 날짜 계산된 값)

    Date2013.04.23 CategoryDevelop Byhooni Views15860
    Read More
  2. [ios] iOS In App Purchase #2 (코드 구현)

    Date2013.11.20 CategoryDevelop Byhooni Views15832
    Read More
  3. [ios] iOS In App Purchase 코드 부분 샘플 1

    Date2013.11.20 CategoryDevelop Byhooni Views15831
    Read More
  4. [api] 인스타그램에서 최신 이미지 가져오기 (Using Instagram API)

    Date2018.04.05 CategoryDevelop Byhooni Views15815
    Read More
  5. [sql] 중복데이터 삭제 쿼리

    Date2013.04.23 CategorySystem/OS Byhooni Views15767
    Read More
  6. [C] C언어의 조건 연산자(Conditional Operator)

    Date2003.04.23 CategoryDevelop Byhooni Views15742
    Read More
  7. [ios] Objective-C에서 SQLite 사용하기..

    Date2013.04.23 CategoryDevelop Byhooni Views15619
    Read More
  8. [linux] 랜카드 2개 설정 & iptables 로 사설 ip..

    Date2003.04.23 CategorySystem/OS Byhooni Views15596
    Read More
  9. [linux] 리눅스 활용 팁^^

    Date2003.04.23 CategorySystem/OS Byhooni Views15544
    Read More
  10. [linux] 아파치설치/설정(CGI부분)

    Date2003.04.23 CategorySystem/OS Byhooni Views15448
    Read More
  11. [ppt] Magic URLs & Hidden Form Fields 에 대해.. ㅋㅋ

    Date2013.04.23 CategoryPPT Byhooni Views15442
    Read More
  12. [linux] sendmail 설정/사용

    Date2003.04.23 CategorySystem/OS Byhooni Views15437
    Read More
Board Pagination Prev 1 ... 21 22 23 24 25 26 27 28 29 30 ... 99 Next
/ 99