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