YearMonth minus(long amountToSubtract, TemporalUnit unit) example

Description

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;
// w  ww  .j a  v  a  2  s .com
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.





















Home »
  Java Date Time »
    java.time Reference »




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