DateUtil增加offsetYear方法

This commit is contained in:
Looly 2024-05-29 15:06:06 +08:00
parent a3ebbf967d
commit 9038f7dd6d
2 changed files with 13 additions and 0 deletions

View File

@ -5,6 +5,7 @@
# 5.8.29(2024-05-29)
### 🐣新特性
* 【core 】 DateUtil增加offsetYear方法
### 🐞Bug修复

View File

@ -1439,6 +1439,18 @@ public class DateUtil extends CalendarUtil {
return offset(date, DateField.MONTH, offset);
}
/**
* 偏移年
*
* @param date 日期
* @param offset 偏移年数正数向未来偏移负数向历史偏移
* @return 偏移后的日期
* @since 5.8.29
*/
public static DateTime offsetYear(final Date date, final int offset) {
return offset(date, DateField.YEAR, offset);
}
/**
* 获取指定日期偏移指定时间后的时间生成的偏移日期不影响原日期
*