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
- xPlatform
- hadoop
- GIT
- tomcat
- window
- Eclipse
- vaadin
- mybatis
- Java
- SPC
- Kotlin
- table
- Express
- Sqoop
- IntelliJ
- R
- SSL
- Spring
- JavaScript
- mapreduce
- MSSQL
- plugin
- es6
- NPM
- Android
- react
- Python
- 보조정렬
- SQL
- 공정능력
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
반응형