(Valid Java) Point 34. int 상수 대신 열거형을 사용하라.
Point 34. int 상수 대신 열거형을 사용하세요. 정수 열거형 패턴 – 꽤 깨지기 쉽습니다! public class IntegerConstants { 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 … Read more