Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- MediaDataSource
- convert string to intent
- lufs
- java callstack
- RxJava 스터디
- 음량표준화
- callstack 출력
- Dagger2란
- android enum
- HashMap vs ArrayMap
- android network
- APK로딩
- 오픈소스라이선스
- print callstack
- so파일 동적로딩
- APK 동적로딩
- Replaygain
- BlockingQueue Capacity
- Intent String 변환
- 네트워크 디버깅
- Service 팁
- RxJava Programming
- corePoolSize
- gitignore
- ArrayMap
- mitmproxy
- convert Intent to string
- gitignore작성법
- Service관리
- enum performance
Archives
- Today
- Total
일상&개발 로그
Singleton - DCL과 Demand Holder 본문
Singleton패턴은 하나의 인스턴스만 사용하는 경우 많이 사용되는 패턴입니다.
Singleton패턴을 구현하는 방법에는 여러가지가 있는데, 그 중 DCL과 Demand Holder에 대해 알아보겠습니다.
(DCL은 "lazy-initialization" 시 locking의 overhead를 줄이기 위해 사용합니다.)
기존에 DCL(double-checked-locking)을 많이 사용했었는데, Holder를 사용하면 더 알아보기 쉽게 사용이 가능하다고 합니다. (DCL은 volatile을 사용하지 않으면 Compiler의 reorder에 의해 thread-safe하지 않습니다.)
# DCL
private static volatile Something instance = null;
public static Something getInstance() {
if (instance == null) {
synchronized (this) {
if (instance == null)
instance = new Something();
}
}
return instance;
}
# Demand Holder
private static class LazySomethingHolder {
public static Something something = new Something();
}
public static Something getInstance() {
return LazySomethingHolder.something;
}
# 출처 - http://www.cs.umd.edu/~pugh/java/memoryModel/jsr-133-faq.html#whatismm
'개발 > 개발 일반' 카테고리의 다른 글
ThreadPoolExecutor에서 corePoolSize와 queue capacity의 관계 (0) | 2018.08.03 |
---|---|
Git 최신태그와 local간의 차이점 쉽게 비교하는 방법 (0) | 2017.11.03 |
OpenSource Licence 종류 (0) | 2017.06.05 |
.gitignore파일 쉽게 생성하기 (0) | 2017.02.08 |
Comments