标签: java generics
我有以下界面:
public interface IMyList<T> { <S> S[] toArray(S[] a); }
我在Eclipse中遇到此接口实现的编译错误。
public class MyList implements IMyList{ @Override public <S> S[] toArray(S[] a) { return null; } }
拜托,你能解释一下这种行为吗?
感谢。