LocalDateTime plusYears(long years) example
Description
LocalDateTime plusYears(long years)
returns a copy of this
LocalDateTime with the specified period in years added.
Syntax
plusYears
has the following syntax.
public LocalDateTime plusYears(long years)
Example
The following example shows how to use plusYears
.
import java.time.LocalDateTime;
/*from w w w. j a v a 2 s . co m*/
public class Main {
public static void main(String[] args) {
LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 00);
LocalDateTime t = a.plusYears(100);
System.out.println(t);
}
}
The code above generates the following result.