gpt4 book ai didi

java - 为什么 Joda Interval 不具有可比性?

转载 作者:行者123 更新时间:2023-12-01 18:06:04 25 4
gpt4 key购买 nike

我一直在尝试生成 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com