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
- NPM
- MSSQL
- Eclipse
- window
- mybatis
- mapreduce
- R
- vaadin
- react
- table
- hadoop
- plugin
- Sqoop
- Python
- 보조정렬
- Express
- GIT
- es6
- Kotlin
- 공정능력
- JavaScript
- Java
- xPlatform
- tomcat
- SPC
- IntelliJ
- SSL
- Android
- SQL
- Spring
Archives
- Today
- Total
반응형
목록2024/04/18 (1)
DBILITY
singleton의 최적?
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(); } }
java/basic
2024. 4. 18. 15:12
반응형