- java.time 包类
- java.time - 主页
- java.time - 时钟
- java.time - 时长
- java.time - Instant
- java.time - LocalDate
- java.time - LocalDateTime
- java.time - LocalTime
- java.time - MonthDay
- java.time - OffsetDateTime
- java.time - OffsetTime
- java.time - Period
- java.time - Year
- java.time - YearMonth
- java.time - ZonedDateTime
- java.time - ZoneId
- java.time - ZoneOffset
- java.time 包枚举
- java.time - Month
- java.time 实用资源
- java.time - 讨论
java.time.LocalDateTime.plusYears() 方法示例
说明
java.time.LocalDateTime.plusYears(long yearsToAdd) 方法返回一个带有指定已添加年数的此日期时间副本。
声明
以下是 java.time.LocalDateTime.plusYears(long yearsToAdd) 方法的声明。
public LocalDateTime plusYears(long yearsToAdd)
参数
yearsToAdd − 要添加的年数,可以为负数。
返回值
基于此日期时间的 LocalDateTime,已添加年数,非空。
异常
DateTimeException − 如果结果超出支持的日期范围。
示例
以下示例显示了 java.time.LocalDateTime.plusYears(long yearsToAdd) 方法的使用。
package com.tutorialspoint; import java.time.LocalDateTime; public class LocalDateTimeDemo { public static void main(String[] args) { LocalDateTime date = LocalDateTime.parse("2017-02-03T10:15:30"); System.out.println(date.plusYears(2)); } }
让我们编译并运行上述程序,这将产生以下结果 −
2019-02-03T10:15:30
广告