Develop
2013.11.18 17:11
[java] 초간단 싱글톤(Singleton) 패턴 샘플 코드
조회 수 12544 댓글 0
첨부 '1' |
---|
싱글톤 패턴 간단 예제
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) { } }
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
817 | Develop | [c] 연산자 우선순위.. ㅋㅋ | hooni | 2013.04.23 | 8305 |
816 | Develop | [c] 오류체크(CRC 체크 ) 소스 2 | hooni | 2013.04.23 | 9860 |
815 | Develop |
[c] 오목.. 간단한 소스 ㅋㅋ
![]() |
hooni | 2013.04.23 | 10763 |
814 | Develop |
[c] 웅지학원 NAT를 소스코드로..
![]() |
hooni | 2013.04.23 | 7848 |
813 | Develop |
[c] 웹 메모장.. ㅋㅋ
![]() |
hooni | 2013.04.23 | 8115 |
812 | Develop |
[c] 윈도우 API sin 함수 출력..
![]() |
hooni | 2013.04.23 | 16532 |
811 | Develop |
[c] 윈도우 API Viewport와 Window
![]() |
hooni | 2013.04.23 | 8346 |
810 | Develop |
[c] 유닉스 프로그램에서 인수처리 해주는 getopt() 함수
![]() |
hooni | 2013.04.23 | 9313 |
809 | Develop |
[c] 이진 탐색 두 가지 코드 (재귀/반복)
![]() |
hooni | 2015.06.26 | 2022 |
808 | Develop |
[c] 이진트리(binary tree) 샘플소스 (삽입, 삭제, 운행)
![]() |
hooni | 2003.04.23 | 9106 |
807 | Develop | [c] 이진트리(binary tree)의 운행.. | hooni | 2003.04.23 | 9929 |
806 | Develop |
[c] 이진트리(binary tree)의 특성
![]() |
hooni | 2003.04.23 | 10555 |