Java Date Time - Year minusYears(long yearsToSubtract) example








Year minusYears(long yearsToSubtract) returns a copy of this year with the specified number of years subtracted.

Syntax

minusYears has the following syntax.

public Year minusYears(long yearsToSubtract)

Example

The following example shows how to use minusYears.

import java.time.Year;
/*  w  ww.  java  2  s  . com*/
public class Main {
  public static void main(String[] args) {
    Year y = Year.of(2014);
    Year l = y.minusYears(12);
    System.out.println(l);

  }
}

The code above generates the following result.