[Effective Java 3/e] 아이템 38 - 확장할 수 있는 열거 타입이 필요하면 인터페이스를 사용하라
아이템 38 - 확장할 수 있는 열거 타입이 필요하면 인터페이스를 사용하라
열거 타입 확장 - 인터페이스와 그 인터페이스를 구현하는 기본 열거 타입을 함께 사용해 같은 효과를 낼 수 있다
인터페이스를 이용해 확장 가능 열거 타입을 흉내 냈다
public interface Operation {
double apply(double x, double y);
}
public enum BasicOperation implements Operation {
PLUS("+") {
public double apply(double x, double y) { return x + y; }
};
private final String symbol;
BasicOperation(String symbol) {
this.symbol = symbol;
}
}
확장 가능 열거 타입
public enum ExtendedOperation implements Operation {
EXP("^") {
public double apply(double x, double y) { return Math.pow(x, y) }
};
private final String symbol;
ExtendedOperation(String symbol) {
this.symbol = symbol;
}
}
- Operation 인터페이스를 사용하도록 작성되어 있으면 어디든 쓸 수 있음.
클래스 객체를 넘기는 방법
public static void main(String[] args) {
double x = Double.parseDouble(args[0]);
double y = Double.parseDouble(args[1]);
test(ExtendedOperation.class, x, y);
}
private static <T extends Enum<T> & Operation> void test(
Class<T> opEnumType, double x, double y) {
for(Operation op : opEnumType.getEnumConstants())
System.out.printf("%f %s %f = %f%n", x, op, y, op.apply(x,y));
}
한정적 와일드카드 타입 넘기는 방법
public static void main(String[] args) {
double x = Double.parseDouble(args[0]);
double y = Double.parseDouble(args[1]);
test(Arrays.asList(ExtendedOperation.values()), x, y);
}
private static void test(Collection<? extends Operation> opSet, double x, double y) {
for(Operation op : opSet)
System.out.printf("%f %s %f = %f%n", x, op, y, op.apply(x,y));
}