在我使用的javagenerics
和我想使用的类中implements interface(? extends class)
,这个接口是generic interface<T>
,但我得到消息
same interface as superclass
代码示例:
public interface ISomething<T>
{
string Name { get; set; }
string GetType(T t);
}
public class SomeClass implements ISomething<T extends SomeClass2>
这可能吗?