mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
DateUtil增加offsetYear方法
This commit is contained in:
parent
a3ebbf967d
commit
9038f7dd6d
@ -5,6 +5,7 @@
|
||||
# 5.8.29(2024-05-29)
|
||||
|
||||
### 🐣新特性
|
||||
* 【core 】 DateUtil增加offsetYear方法
|
||||
|
||||
### 🐞Bug修复
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取指定日期偏移指定时间后的时间,生成的偏移日期不影响原日期
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user