我想在我的一旁提供这样的东西:
class Foobar extends AbstractThing<Double>
class EventThing<Foobar> {
public Foobar getSource();
public Double getValue();
}
因此,我写道:
class EventThing<T extends AbstractThing<U>> {
public T getSource();
public U getValue();
}
但java不能解决<代码>。 U 。
改为: Text 摘要Thing<U>U> 相反,但第二 U
实际上是多余的,因此,“离职”界定了已经存在的类型。 因此,我热爱摆脱恐怖主义。