YearMonth minus(TemporalAmount amountToSubtract) example

Description

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   www .j  av a  2  s. c o 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.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset