gpt4 book ai didi

java - 如何在 YearMonth 对象中获取一个月的最后一天?

转载 作者:行者123 更新时间:2023-12-03 20:24:55 27 4
gpt4 key购买 nike

我正在使用 joda.timeYearMonth 对象,并希望在此对象中获取月份日期的最后一天。

yearMonth.monthOfYear().getMaximumValue(); //return 12 as the maximum month value is =12

但我想要的是那个特定月份的最大天数?例如,大多数是 30 或 31。我怎样才能得到它?

最佳答案

DateTime 有这个现成的功能。

DateTime dt = new DateTime();
System.out.println(dt.dayOfMonth().getMaximumValue());

但是如果你想要它用于 YearMonth,则将 YearMonth 转换为 DateTime 并按上述操作:

YearMonth ym = new YearMonth();
dt = ym.toDateTime(null);
System.out.println(dt.dayOfMonth().getMaximumValue());

关于java - 如何在 YearMonth 对象中获取一个月的最后一天?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26136000/

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