ZonedDateTime minusYears(long years)
returns a copy of this ZonedDateTime with the specified period in years subtracted.
minusYears
has the following syntax.
public ZonedDateTime minusYears(long years)
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.