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