其他分享
首页 > 其他分享> > TreeMap使用时需要注意Key的比较

TreeMap使用时需要注意Key的比较

作者:互联网

TreeMap在存放自定义类型数据时,必须进行key的比较。来实现数据的升序或降序排列

无法比较key值时会抛出异常,提醒无法比较。此时,需要自定义数据类型实现比较器

比较器有两种

1.实现Comparable接口实现内部比较器


    @Override
    public int compareTo(Students o) {
        return this.getName().compareTo(o.getName());
    }

2.实现Comparator接口实现外部比较器

@Override
    public int compare(Student o1, Student o2) {
        return o1.getName().compareTo(o2.getName());
    }

关于比较器,常见的String、Integer、Double等底层实现比较器,重写方法即可。

Exception in thread "main" java.lang.ClassCastException: day01.map集合.Students cannot be cast to java.lang.Comparable
	at java.util.TreeMap.compare(TreeMap.java:1294)
	at java.util.TreeMap.put(TreeMap.java:538)
	at day01.map集合.TreeMapTest.main(TreeMapTest.java:15)

标签:java,实现,getName,TreeMap,注意,Key,compareTo,比较
来源: https://blog.csdn.net/qq_57036017/article/details/120816394