2

我有:

ZoneId gmt = ZoneId.of("GMT");
LocalDateTime localDateTime = LocalDateTime.now();
LocalDate localDateNow = localDateTime.toLocalDate();

Set<LocalDate> hollidays = new HashSet<>();

我可以这样平等LocalDate吗?

if(hollidays.contains(localDateNow)){
...
}
4

1 回答 1

3

是的你可以。

如果您查看LocalDate::equals()实现,您将能够看到:

int compareTo0(LocalDate otherDate) {
    int cmp = (year - otherDate.year);
    if (cmp == 0) {
        cmp = (month - otherDate.month);
        if (cmp == 0) {
            cmp = (day - otherDate.day);
        }
    }
    return cmp;
}

这看起来像是一个正确实现equals的日期方法 - 这意味着它可以与HashSets. 一起正常工作。

hashCode()文档摘录:

如果两个对象根据 equals(Object) 方法相等,则对两个对象中的每一个调用 hashCode 方法必须产生相同的整数结果。

于 2017-08-22T09:42:25.247 回答