YearMonth minusYears(long yearsToSubtract)
returns a copy of this year-month with the specified period in years subtracted.
minusYears
has the following syntax.
public YearMonth minusYears(long yearsToSubtract)
The following example shows how to use minusYears
.
import java.time.YearMonth; /* w w w.j av a2s. 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.