728x90 열거 체1 enum 자바 5 이전에는 enum이 존재하지 않았기 때문에 interface를 사용해 이를 대체했다. 하지만 이 방식은 다음과 같이 잘못된 연산을 할 수 있는 문제를 가지고 있었다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 interface Animal { int DOG = 1; int CAT = 2; } interface Person { int MAN = 1; int WOMAN = 2; } public class Main { public static void main(String[] args) { who(Person.MAN); // 남성 who(Animal.DOG); // 남성(잘못된 출력) } public static void who(int .. 2022. 2. 21. 이전 1 다음 728x90