gpt4 book ai didi

java - 有没有办法表达 TemporalAmount 的 "sign"?

转载 作者:行者123 更新时间:2023-11-30 01:47:34 25 4
gpt4 key购买 nike

基于此answer ,我决定实现自己的 MutableClock 用于单元测试目的,其工作方式略有不同:

class MutableClock extends Clock {
private final List<Instant> instants = new ArrayList<>();

public MutableClock(Instant now, TemporalAmount... amounts) {
Objects.requireNonNull(now, "now must not be null");
Objects.requireNonNull(amounts, "amounts must not be null");
instants.add(now);
for (TemporalAmount amount : amounts) {
Instant latest = instants.get(instants.size() - 1);
instants.add(latest.plus(amount));
}
}

@Override
public Instant instant() {
Instant latest = instants.get(0);
if (instants.size() > 1) {
instants.remove(0);
}
return latest;
}

...

但后来我注意到我在这里这样做:

instants.add(latest.plus(amount));

所以,基本上,我只能把时钟“向前”滴答作响。当然,这在大多数情况下都是有意义的,但由于所有这些都是为了单元测试,我可以想象我想要使用这样的 MutableClock 实例并让它返回并不总是“的时刻”增加”。

但是当查看TemporalAmount时界面:没有办法表达时间量吗?!换句话说: TemporalAmount 的实例似乎没有“签名”。

那么,如何解决这个问题呢?

最佳答案

TemporalAmount由java.time中的两个类实现:DurationPeriod 。当然,用户也可以编写他或她自己的接口(interface)实现。我没有检查,但我假设 PeriodDuration ThreeTen Extra 项目的类也实现了该接口(interface)。您可能认为您不能添加 PeriodInstant因为Instant不知道日、月、年,这就是Period由组成。一般来说,你确实不能,但在某些情况下你可以。添加Period.ZEROPeriod.ofWeeks(3)进展顺利(后者将一周定义为 168 小时,我们知道夏令时开始和结束时,这不是事实,但这是可能的)。简而言之:我们不能安全地假设 TemporalAmountDuration .

如果您想对接口(interface)进行编程,一个相当简单的技巧是检查在添加金额时时钟是否实际上倒退:

        Instant latest = instants.get(instants.size() - 1);
Instant newInstant = latest.plus(amount);
if (newInstant.isBefore(latest)) {
// The amount was negative; do whatever handling of the situation you need
} else {
instants.add(newInstant);
}

当然,如果您想让时钟倒退,则无需对这种情况进行特殊处理(您可以省略 if - else 构造)。正如您在自己的回答中指出的那样,创建负数不会产生任何问题,例如 Duration.ofSeconds(-5)Period.ofWeeks(-3) .

为什么界面不提供负数测试和/或否定方法?

虽然Duration总是明确地要么是负数、零要么是正数,这对于 Period 并不成立。 。 Period.ofMonths(1).minusDays(30)可能是负数、零或正数,具体取决于月份的选择。奇怪的是Period有一个 isNegative方法,但它只是测试三个单位(年、月、日)中的任何一个是否为负,因此语义不是您需要的。所以Period.ofMonths(1).minusDays(3).isNegative()返回true .

关于java - 有没有办法表达 TemporalAmount 的 "sign"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57390684/

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