我有一个通用接口
public interface Consumer<E> {
public void consume(E e);
}
我有一个类,它使用两种类型的对象,所以我想这样做:
public class TwoTypesConsumer implements Consumer<Tomato>, Consumer<Apple>
{
public void consume(Tomato t) { ..... }
public void consume(Apple a) { ...... }
}
显然我做不到。
我当然可以亲自执行调度,例如。
public class TwoTypesConsumer implements Consumer<Object> {
public void consume(Object o) {
if (o instanceof Tomato) { ..... }
else if (o instanceof Apple) { ..... }
else { throw new IllegalArgumentException(...) }
}
}
但是我正在寻找泛型提供的编译时类型检查和分派解决方案。
我能想到的最好的解决方案是定义单独的接口,例如。
public interface AppleConsumer {
public void consume(Apple a);
}
从功能上来说,我认为这个解决方案还可以,只是冗长而丑陋。
有什么想法吗?