如何实现:interface MySortedCollection <t extends =“”可比较<t =“”>&gt; </t>

时间:2012-06-17 15:49:06

标签: java interface comparable

我有以下界面:

interface MySortedCollection<T extends Comparable<T>> {
    boolean isElement(T t);
    void insert(T t);
    void printSorted();
}

我尝试使用AVLTree来实现界面:

public class AVLTree<T> implements MySortedCollection{

  private AVLNode<T> tree=null;

  public AVLTree (){
  } 

  public boolean isElement(T t){

  }


  public void insert(T t){
    if(tree==null){
      tree= new AVLNode<T>(t);
    }
  }

  public void printSorted(){}

}

但是我得到了错误:

error: AVLTree is not abstract and does not override abstract
method insert(Comparable) in MySortedCollection 
public class AVLTree<T> implements MySortedCollection{

怎么了?

2 个答案:

答案 0 :(得分:5)

应该是

public class AVLTree<T extends Comparable<T>> implements MySortedCollection<T> {
}

确保AVLNode类具有类似的签名

public class AVLNode<T extends Comparable<T>> {
}

答案 1 :(得分:0)

应该是

public class AVLTree<T extends Comparable<T>> implements MySortedCollection<T> {