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 |
Tags
- mybatis
- vaadin
- IntelliJ
- Express
- es6
- Kotlin
- plugin
- Java
- hadoop
- MSSQL
- Eclipse
- R
- Android
- xPlatform
- window
- mapreduce
- 공정능력
- Sqoop
- Python
- JavaScript
- SQL
- 보조정렬
- GIT
- Spring
- SSL
- table
- SPC
- tomcat
- NPM
- react
Archives
- Today
- Total
DBILITY
singleton의 최적? 본문
728x90
반응형
public class DataStore {
private final String TAG = DataStore.class.getSimpleName();
private DataStore() {
Log.e(TAG, "Init");
}
public static DataStore getInstance() {
return LazyDataStore.instance;
}
private static class LazyDataStore {
private static final DataStore instance = new DataStore();
}
}
728x90
'java > basic' 카테고리의 다른 글
linux 환경 java Graphics2D 생성이 안될 때 (0) | 2024.06.27 |
---|---|
java apache poi excel sheet validation example ( 엑셀 시트 유효성 검사 추가 ) (0) | 2023.02.02 |
java svn log export to excel ( svn 로그 엑셀 저장, svnログエクセル保存 ) (0) | 2022.09.06 |
java 6 compiled last maven version 3.2.5 (0) | 2022.01.05 |
java string to unix time (0) | 2021.11.13 |
Comments