Java Date Time - ZonedDateTime minusYears(long years) example








ZonedDateTime minusYears(long years) returns a copy of this ZonedDateTime with the specified period in years subtracted.

Syntax

minusYears has the following syntax.

public ZonedDateTime minusYears(long years)

Example

The following example shows how to use minusYears.

import java.time.ZonedDateTime;

public class Main {
  public static void main(String[] args) {
    ZonedDateTime dateTime = ZonedDateTime.now();
    ZonedDateTime n = dateTime.minusYears(12);
    System.out.println(n);
  } 
}

The code above generates the following result.