java – 为什么ConcurrentSkipListSet.contains需要比较器而不是equals

前端之家收集整理的这篇文章主要介绍了java – 为什么ConcurrentSkipListSet.contains需要比较器而不是equals前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我使用ConcurrentSkipListSet并使用contains方法.

根据JAVA doc for contains方法

如果此set包含指定的元素,则返回true.更正式地说,当且仅当此集合包含o.equals(e)的元素e时才返回true.

但根据我的测试,似乎不使用equals方法,而是比较器是强制性的.请帮助我理解JAVA规范和实现之间的这种异常

ConcurrentSkipListSet

/ **
     *如果使用比较器,则返回ComparableUsingComparator,否则
     *将密钥转换为Comparable,这可能会导致ClassCastException,
     *传播回调用者.
     * /
    私人可比比较(对象键)

at java.util.concurrent.ConcurrentSkipListMap.comparable(ConcurrentSkipListMap.java:663)
    at java.util.concurrent.ConcurrentSkipListMap.doGet(ConcurrentSkipListMap.java:821)
    at java.util.concurrent.ConcurrentSkipListMap.containsKey(ConcurrentSkipListMap.java:1608)

我正在使用Oracle JDK 7

最佳答案
我认为有两个问题/关注点,(1)为什么包含需要Comparator或Comparable. (2)Javadoc说它将使用equals方法.

> ConcurrentSkipListSet是可导航的有序集合,因此所有元素必须保持自然顺序,或者必须指定比较器.
>我认为Javadoc声明不正确,或者至少它具有误导性.在引擎盖下,CSLS将委托给ConcurrentSkipListMap.containsKey,因此它现在不控制contains实现.也就是说,我认为可以有一个论点来澄清javadoc.

编辑:
对于这些对象无法比较的事实,还有一个投掷文档

ClassCastException – if the specified element cannot be compared with
the elements currently in this set

原文链接:https://www.f2er.com/java/437311.html

猜你在找的Java相关文章