4
public abstract class Mother {
}

public class Daughter extends Mother {
}

public class Son extends Mother {
}

我需要一个Map哪些键是一个Daughter或多个Son类,哪些值分别是这两个类之一的对象列表

例如:

/* 1. */ map.put(Daughter.class, new ArrayList<Daughter>()); // should compile
/* 2. */ map.put(Son.class, new ArrayList<Son>()); // should compile
/* 3. */ map.put(Daughter.class, new ArrayList<Son>()); // should not compile
/* 4. */ map.put(Son.class, new ArrayList<Daughter>()); // should not compile

我试过Map<Class<T extends Mother>, List<T>>了,但它没有编译。

Map<Class<? extends Mother>, List<? extends Mother>>确实可以编译,但是案例3.4.编译也应该不应该。

甚至可能吗?

4

2 回答 2

9

我认为不可能在类型中对此进行编码,我会使用自定义类来完成

class ClassMap<T> {
  private Map<Class<? extends T>, List<? extends T>> backingMap = new HashMap<>();

  public <E extends T> void put(Class<E> cls, List<E> value) {
    backingMap.put(cls, value);
  }

  @SuppressWarnings("unchecked")
  public <E extends T> List<E> get(Class<E> cls) {
    return (List<E>)backingMap.get(cls);
  }
}

只要您不将backingMap引用泄漏到此类之外,在此处抑制警告是安全的。

于 2012-12-12T17:47:16.720 回答
0

假设您正在寻找一张地图,那么这是不可能的。

于 2012-12-12T17:46:08.313 回答