首頁  >  問答  >  主體

java基础问题,求各位大神帮忙解答,感激不尽!

程序运行返回Exception in thread "main" java.lang.ClassCastException: Item cannot be cast to java.lang.Comparable.
求各位大哥大叔帮看看哪里出了问题。。。。
public class LinkListTest {

public static void main(String[] args) {
    SortedSet<Item> oo = new TreeSet<>();
    oo.add(new Item("afang", 1011));
    oo.add(new Item("fangjie", 1222));
    oo.add(new Item("fangfang", 889));
    System.out.println(oo);
    
    SortedSet<Item> sortedByDes = new TreeSet<>(new 
            Comparator<Item>() {
            public int compare(Item a, Item b) {
            String desA = a.getDescription();
            String desB = b.getDescription();
            return desA.compareTo(desB);
            }
    });
    sortedByDes.addAll(oo);
    System.out.println(sortedByDes);
    
}


}
class Item  {
    private String description;
    private int id;
    public Item(String aDes, int aId) {
        description = aDes;
        id = aId;
    }
    
    public String getDescription() {
        return description;
    }

}

巴扎黑巴扎黑2764 天前766

全部回覆(3)我來回復

  • 伊谢尔伦

    伊谢尔伦2017-04-17 17:29:08

    直接讓item實作Comparable介面

    回覆
    0
  • 阿神

    阿神2017-04-17 17:29:08

    雷雷

    回覆
    0
  • PHPz

    PHPz2017-04-17 17:29:08

    這個異常是型別轉換異常
    SortedSet sortedByDes = new TreeSet<>(new Comparator() {…}
    多型必須是子類對象轉換為父類對象,new Comparator是Comparable的子類,而你寫的class Item {…}並不是Comparable的子類,所以會出現型別轉換錯誤。

    回覆
    0
  • 取消回覆