ZonedDateTime minusYears(long years) example
Description
ZonedDateTime minusYears(long years)
returns a copy of this ZonedDateTime with the specified period in years subtracted.
Syntax
minusYears
has the following syntax.
public ZonedDateTime minusYears(long years)
Example
The following example shows how to use minusYears
.
import java.time.ZonedDateTime;
/* www. j a v a 2 s .com*/
public class Main {
public static void main(String[] args) {
ZonedDateTime dateTime = ZonedDateTime.now();
ZonedDateTime n = dateTime.minusYears(12);
System.out.println(n);
}
}
The code above generates the following result.