如何在方法类型参数中指定具有未知泛型类型的泛型类类型

时间:2013-03-17 23:26:02

标签: java generics

下面给我一个“类型KeyType没有Type参数”。请注意,AttributeKey确实有一个类型参数,我希望getAttribute方法的输入使用一个特定的类,该类使用AttType扩展AttributeKey。我还没有发现这是否可行或如果可行的话。 :)

public interface AttributeMap<KeyType extends AttributeKey> 
{
    public <AttType> AttType getAttribute(KeyType<AttType> key);
}

0 个答案:

没有答案