카테고리 없음 블로그 이사했습니다. http://bomeeryu.com Remembo mee I know my value bomeeryu.com 기존에 사용하던 도메인도 만료도 되었고, 현재 회사 네트워크에서 카카오 계열 서비스 접근이 힘들어서 지킬로 다시 이사했습니다. 이사 마무리를 하면서 통계를 보는데 방문자 수가 꽤 있었네요...! 많이들 찾아주시는 글 링크 새로 남기고 갑니다. bomeeryu.com/translate/2019/09/08/background-activity.html [번역] 백그라운드에서 액티비티 시작을 제한합.. Effective Java Effective Java - Chapter2 Summary (1) 2. Creating and Destroying Objects when and how to create objects how to ensure they are destroyed in a timely manner how to manage any cleanup action that must precede their destruction Consider static factory methods instead of constructors public static Boolean valueOf(boolean b){ return b? Boolean.TRUE : Boolean.FALSE; } A static factory method is not the same as the Factory Method Pattern f..