java.time.Year.minusYears() Method Example



Description

The java.time.Year.minusYears(long yearsToSubtract) method returns a copy of this Year with the specified years subtracted.

Declaration

Following is the declaration for java.time.Year.minusYears(long yearsToSubtract) method.

public Year minusYears(long yearsToSubtract)

Parameters

yearsToSubtract − the years to subtract, positive or negative.

Return Value

a Year based on this Year with the specified years subtracted, not null.

Exception

DateTimeException − if the result exceeds the supported range.

Example

The following example shows the usage of java.time.Year.minusYears(long yearsToSubtract) method.

package com.tutorialspoint;

import java.time.Year;
import java.time.temporal.ChronoField;

public class YearDemo {
   public static void main(String[] args) {

      Year date = Year.of(2017); 
      System.out.println(date.get(ChronoField.YEAR));
      System.out.println(date.minusYears(4).get(ChronoField.YEAR));
   }
}

Let us compile and run the above program, this will produce the following result −

2017
2013
Advertisements