Java Date Time - YearMonth minus(TemporalAmount amountToSubtract) example








YearMonth minus(TemporalAmount amountToSubtract) returns a copy of this year-month with the specified amount subtracted.

Syntax

minus has the following syntax.

public YearMonth minus(TemporalAmount amountToSubtract)

Example

The following example shows how to use minus.

import java.time.Period;
import java.time.YearMonth;
/*from  w ww  . j a  va 2  s . co m*/
public class Main {
  public static void main(String[] args) {
    YearMonth y = YearMonth.now();
    YearMonth s = y.minus(Period.ofYears(3));
    System.out.println(s);

  }
}

The code above generates the following result.