java – 如何多次实现相同的界面,但是用不同的泛型?

前端之家收集整理的这篇文章主要介绍了java – 如何多次实现相同的界面,但是用不同的泛型?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个问题在这里已经有一个答案:> How to make a Java class that implements one interface with two generic types?6
我有以下界面,我想在我的类中多次实现:
public interface EventListener<T extends Event>
{
    public void onEvent(T event);
}

现在,我想通过以下方式实现这个界面:

class Foo implements EventListener<LoginEvent>,EventListener<logoutEvent>
{

    @Override
    public void onEvent(LoginEvent event)
    {

    }

    @Override
    public void onEvent(logoutEvent event)
    {

    }
}

但是,这给我的错误:复制类com.foo.EventListener在行上:

class Foo implements EventListener<LoginEvent>,EventListener<logoutEvent>

可以用不同的泛型实现接口两次吗?如果没有,下一个最接近我可以做什么来实现我在这里做什么?

解决方法

您需要使用内部或匿名类.例如
class Foo {
   public EventListener<X> asXListener() {
      return new EventListener<X>() {
          // code here can refer to Foo
      }
   }


  public EventListener<Y> asYListener() {
      return new EventListener<Y>() {
          // code here can refer to Foo
      }
   }
}
原文链接:https://www.f2er.com/java/122243.html

猜你在找的Java相关文章