Java Date Time - YearMonth minus(long amountToSubtract, TemporalUnit unit) example








YearMonth minus(long amountToSubtract, TemporalUnit unit) returns a copy of this year-month with the specified amount subtracted.

Syntax

minus has the following syntax.

public YearMonth minus(long amountToSubtract,   TemporalUnit unit)

Example

The following example shows how to use minus.

import java.time.YearMonth;
import java.time.temporal.ChronoUnit;
/*from   www . j a  va  2s . c  om*/
public class Main {
  public static void main(String[] args) {
    YearMonth y = YearMonth.now();
    YearMonth s = y.minus(12,ChronoUnit.YEARS);
    System.out.println(s);

  }
}

The code above generates the following result.