我想更新一个 Instant 对象,以便我可以再次与它进行比较。
Instant mvTime = Instant.now();
// Some Code
// Some More Code
下面的代码被执行了很多次:
Instant currentTime = Instant.now();
Duration timeBetween = Duration.between(mvTime, currentTime);
if (timeBetween.getSeconds() > Long.parseLong("120")) {
doSomething()
mvTime = mvTime.plusSeconds(Long.parseLong("180"));
}
问题是我想更新同一个实例。我怎样才能做到这一点?
繁花不似锦
PIPIONE
相关分类