简而言之,我有:
public interface Dictionary<E extends Comparable<E>> extends Iterable<E> {
和
public class TreeDictionary implements Dictionary<TreeDictionary> {
编译时,导致错误
TreeDictionary.java:4:类型参数 TreeDictionary 不在其绑定内 public class TreeDictionary implements Dictionary {
我想原因可能是因为我对 Dictionary 接口的声明并不完全清楚。
如果有人能向我解释这一点,我将不胜感激:)