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