gpt4 book ai didi

java - 我如何获得 31 天前的日期?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:45:34 26 4
gpt4 key购买 nike

如何获取 x 应该是 current_date 前 31 天?

x(date)___________________________current_date
31

最佳答案

只需减去 31 天。例如:

LocalDate current = new LocalDate(2015, 6, 19);
LocalDate x = current.minusDays(31); // 2015-05-19

获取当前日期,您可以使用:

LocalDate current = new LocalDate(); // Default time zone

LocalDate current = new LocalDate(zone); // Some specific zone

或者您可能想要创建自己的“时钟”表示,它能够为您提供当前的Instant,在这种情况下您可以使用:

LocalDate current = clock.getCurrentInstant().toDateTime(zone).toLocalDate();

(这让您可以使用依赖注入(inject)来使用假时钟编写更简单的单元测试。)

关于java - 我如何获得 31 天前的日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30932971/

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