Year minusYears(long yearsToSubtract) example
Description
Year minusYears(long yearsToSubtract)
returns a copy of this year with the specified number of years subtracted.
Syntax
minusYears
has the following syntax.
public Year minusYears(long yearsToSubtract)
Example
The following example shows how to use minusYears
.
import java.time.Year;
// ww w .j a v a 2 s .c o m
public class Main {
public static void main(String[] args) {
Year y = Year.of(2014);
Year l = y.minusYears(12);
System.out.println(l);
}
}
The code above generates the following result.