issues
search
devbook-study
/
effectivejava
이펙티브자바 스터디
3
stars
0
forks
source link
issues
Newest
Newest
Most commented
Recently updated
Oldest
Least commented
Least recently updated
[아이템 90] 직렬화된 인스턴스 대신 직렬화 프록시 사용을 검토하라.
#91
catsbi
closed
2 years ago
2
[아이템 89] 인스턴스 수를 통제해야 한다면 readResolve 보단 열거타입을 사용하라.
#90
catsbi
closed
2 years ago
2
[아이템 88] readObject 메서드는 방어적으로 작성하라.
#89
catsbi
closed
2 years ago
2
[아이템 87] 커스텀 직렬화 형태를 고려해보라.
#88
catsbi
closed
2 years ago
2
[아이템 86] Serializable을 구현할지는 신중히 결정하라.
#87
catsbi
closed
2 years ago
3
[아이템 85] 자바 직렬화의 대안을 찾으라.
#86
catsbi
closed
2 years ago
3
[아이템 84] 프로그램의 동작을 스레드 스케줄러에 기대지 말라.
#85
catsbi
closed
2 years ago
3
[아이템 83] 지연 초기화는 신중히 사용하라.
#84
catsbi
closed
2 years ago
3
[아이템 82] 스레드 안전성 수준을 문서화하라.
#83
catsbi
closed
2 years ago
3
[아이템 81] wait와 notify보다는 동시성 유틸리티를 애용하라
#82
catsbi
closed
2 years ago
4
[아이템 80] 스레드보다는 실행자, 태스크, 스트림을 애용하라
#81
catsbi
closed
2 years ago
2
[아이템 79] 과도한 동기화는 피하라
#80
catsbi
closed
2 years ago
3
[아이템 78] 공유 중인 가변 데이터는 동기화해 사용하라
#79
catsbi
closed
2 years ago
3
[아이템 77] 예외를 무시하지 말라
#78
catsbi
closed
2 years ago
5
[아이템 76] 가능한 한 실패 원자적으로 만들라.
#77
catsbi
closed
2 years ago
3
[아이템 75] 예외의 상세 메세지에 실패 관련 정보를 담으라.
#76
catsbi
closed
2 years ago
4
[아이템 74] 메서드가 던지는 모든 예외를 문서화하라.
#75
catsbi
closed
2 years ago
4
[아이템 73] 추상화 수준에 맞는 예외를 던져라.
#74
catsbi
closed
2 years ago
4
[아이템 72] 표준 예외를 사용하라.
#73
catsbi
closed
2 years ago
4
[아이템 71] 필요 없는 검사 예외 사용은 피하라
#72
catsbi
closed
2 years ago
4
[아이템 70] 복구할 수 있는 상황에는 검사 예외를, 프로그래밍 오류에는 런타임 예외를 사용하라
#71
catsbi
closed
2 years ago
4
[아이템 69] 예외는 진짜 예외 상황에만 사용하라
#70
catsbi
closed
2 years ago
4
[아이템 68] 일반적으로 통용되는 명명 규칙을 따르라
#69
catsbi
closed
2 years ago
4
[아이템 67] 최적화는 신중히 하라
#68
catsbi
closed
2 years ago
4
[아이템 66] 네이티브 메서드는 신중히 사용하라.
#67
catsbi
closed
2 years ago
3
[아이템 65] 리플렉션보다는 인터페이스를 사용하라.
#66
catsbi
closed
2 years ago
3
[아이템 64] 객체는 인터페이스를 사용해 참조하라.
#65
catsbi
closed
2 years ago
3
[아이템 63] 문자열 연결은 느리니 주의하라.
#64
catsbi
closed
2 years ago
3
[아이템 62] 다른 타입이 적절하다면 문자열 사용을 피하라.
#63
catsbi
closed
2 years ago
3
[아이템 61] 박싱된 기본 타입보다는 기본 타입을 사용하라
#62
catsbi
closed
2 years ago
2
[아이템 60] 정확한 답이 필요하다면 float와 double은 피하라
#61
catsbi
closed
2 years ago
2
[아이템 59] 라이브러리를 익히고 사용하라
#60
catsbi
closed
2 years ago
2
[아이템 58] 전통적인 for 문보다는 for-each 문을 사용하라
#59
catsbi
closed
2 years ago
3
[아이템 57] 지역변수의 범위를 최소화하라
#58
catsbi
closed
2 years ago
2
[아이템 56] 공개된 API 요소에는 항상 문서화 주석을 작성하라
#57
catsbi
closed
2 years ago
4
[아이템 55] 옵셔널 반환은 신중히 하라
#56
catsbi
closed
2 years ago
4
[아이템 54] null이 아닌, 빈 컬렉션이나 배열을 반환하라
#55
catsbi
closed
2 years ago
4
[아이템 53] 가변인수는 신중히 사용하라
#54
catsbi
closed
2 years ago
4
[아이템 52] 다중정의는 신중히 사용하라
#53
catsbi
closed
2 years ago
4
[아이템 51] 메서드 시그니처를 신중히 설계하라
#52
catsbi
closed
2 years ago
3
[아이템 50] 적시에 방어적 복사본을 만들라
#51
catsbi
closed
2 years ago
3
[아이템 49] 매개변수가 유효한지 검사하라
#50
catsbi
closed
2 years ago
4
[아이템 48] 스트림 병렬화는 주의해서 적용하라
#49
catsbi
closed
2 years ago
3
[아이템 47] 반환 타입으로는 스트림보다 컬렉션이 낫다
#48
catsbi
closed
2 years ago
3
[아이템 46] 스트림에서는 부작용 없는 함수를 사용하라.
#47
catsbi
closed
2 years ago
4
[아이템 45] 스트림은 주의해서 사용하라.
#46
catsbi
closed
2 years ago
5
[아이템 44] 표준 함수형 인터페이스를 사용하라.
#45
catsbi
closed
2 years ago
5
[아이템 43] 람다보다는 메서드 참조를 사용하라.
#44
catsbi
closed
2 years ago
5
[아이템 42] 익명 클래스보다는 람다를 사용하라.
#43
catsbi
closed
2 years ago
5
[아이템 41] 정의하려는 것이 타입이라면 마커 인터페이스를 사용하라.
#42
catsbi
closed
2 years ago
5
Next