본문 바로가기

반응형

emotional developer/detect-Java

Effective Java Reloaded Effective Java Reloaded Joshua Bloch Chief Java Architect Google Inc. 더보기
J2SE 1.4.1의 garbage collection 보완. 더보기
Java Code Conventions 번역 by 박용우.doc 더보기
자바 예외처리 프로그래밍 (2001.03) 더보기
JUnit best practices http://www.javaworld.com/javaworld/jw-12-2000/jw-1221-junit_p.html 더보기
Java GC. http://en.wikipedia.org/wiki/Garbage_collection_%28computer_science%29 Garbage collection (computer science)From Wikipedia, the free encyclopediaJump to: navigation, searchIn computer science, garbage collection (also known as GC) is a form of automatic memory management. The garbage collector or collector attempts to reclaim garbage, or memory used by objects that will never again be accessed o.. 더보기
Plain Old Java Object, POJO http://en.wikipedia.org/wiki/Plain_Old_Java_Object Plain Old Java ObjectFrom Wikipedia, the free encyclopediaJump to: navigation, searchPOJO is an acronym for Plain Old Java Object, and is favoured by advocates of the idea that the simpler the design, the better. The name is used to emphasize that the object in question is not somehow special but an ordinary Java Object, in particular not an EJB.. 더보기
List인터페이스의 subList 메소드 사용시. subListpublic List subList(int fromIndex, int toIndex)Returns a view of the portion of this list between the specified fromIndex, inclusive, and toIndex, exclusive. (If fromIndex and toIndex are equal, the returned list is empty.) The returned list is backed by this list, so non-structural changes in the returned list are reflected in this list, and vice-versa. The returned list supports all of .. 더보기