OffsetDateTime minusYears(long years) example
Description
OffsetDateTime minusYears(long years)
returns a copy of this OffsetDateTime with the specified period in years subtracted.
Syntax
minusYears
has the following syntax.
public OffsetDateTime minusYears(long years)
Example
The following example shows how to use minusYears
.
import java.time.OffsetDateTime;
// w w w .ja v a2s. c om
public class Main {
public static void main(String[] args) {
OffsetDateTime o = OffsetDateTime.now();
OffsetDateTime d = o.minusYears(20);
System.out.println(d);
}
}
The code above generates the following result.