List of usage examples for java.time YearMonth plus
@Override
public YearMonth plus(TemporalAmount amountToAdd)
From source file:Main.java
public static void main(String[] args) { YearMonth y = YearMonth.now(); YearMonth s = y.plus(Period.ofYears(3)); System.out.println(s);// w ww.j a v a 2 s .c o m }