- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试生成 TreeMap<Interval, Set<Object>>
用于将人员实体存储在年龄分组集中,其中 Interval
描述了年龄组的边界。当我尝试执行此操作时,出现以下错误。
java.lang.ClassCastException: org.joda.time.Interval cannot be cast to java.lang.Comparable
交换Interval
对于DateTime
工作完美,但必须使用 map 的 key 作为输入来创建 Interval
.
为什么乔达不是 Interval
具有可比性吗?
最佳答案
间隔可以通过多种方式进行比较。 Interval 的 javadoc 明确指出:
The duration is represented separately by ReadableDuration. As a result, intervals are not comparable. To compare the length of two intervals, you should compare their durations.
An interval can also be converted to a ReadablePeriod.
要获得更长的解释,请考虑以下间隔并定义它们的排序方式:
10:00 - 12:00
11:00 - 13:00
11:00 - 12:00
9:00 - 10:00
9:00 - 13:00
它们应该按持续时间(时间跨度)排序吗?
11:00 - 12:00 (1 hours)
9:00 - 10:00 (1 hours)
10:00 - 12:00 (2 hours)
11:00 - 13:00 (2 hours)
9:00 - 13:00 (4 hours)
还是按开始时间?
9:00 - 10:00
9:00 - 13:00
10:00 - 12:00
11:00 - 13:00
11:00 - 12:00
或者按开始时间,然后持续时间?
9:00 - 10:00 (1 hours)
9:00 - 13:00 (4 hours)
10:00 - 12:00 (2 hours)
11:00 - 12:00 (1 hours)
11:00 - 13:00 (2 hours)
或者按结束时间,然后持续时间?
9:00 - 10:00 (1 hours)
11:00 - 12:00 (1 hours)
10:00 - 12:00 (2 hours)
11:00 - 13:00 (2 hours)
9:00 - 13:00 (4 hours)
正如您所看到的,“自然排序”没有一个明确的定义,这就是Comparable
定义:
This interface imposes a total ordering on the objects of each class that implements it. This ordering is referred to as the class's natural ordering, and the class's
compareTo
method is referred to as its natural comparison method.
关于java - 为什么 Joda Interval 不具有可比性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36323300/
我是一名优秀的程序员,十分优秀!