List of usage examples for java.time ZonedDateTime plusYears
public ZonedDateTime plusYears(long years)
From source file:Main.java
public static void main(String[] args) { ZonedDateTime dateTime = ZonedDateTime.now(); ZonedDateTime n = dateTime.plusYears(12); System.out.println(n);/* w w w . j a va 2s . c o m*/ }