조슈아 블로크 님의 "Effective Java" 책을 정리한 포스팅 입니다.1. int 상수 대신 열거 타입을 사용하라정수 열거 타입public final class IntEnumPattern { public static final int APPLE_FUJI = 0; public static final int APPLE_PIPPIN = 1; public static final int APPLE_GRANNY_SMITH = 2; public static final int ORANGE_NAVEL = 0; public static final int ORANGE_TEMPLE = 1; public static final int ORANGE_BLOOD = 2;}타입 안정적이지 않음..